mirror of
https://github.com/kubernetes-sigs/external-dns.git
synced 2025-08-06 01:26:59 +02:00
Merge pull request #5461 from mloiseleur/fix/linter
chore(ci): fix testify linter
This commit is contained in:
commit
b0cc39a2ae
@ -24,6 +24,7 @@ import (
|
||||
"github.com/cloudflare/cloudflare-go"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
|
||||
"sigs.k8s.io/external-dns/endpoint"
|
||||
)
|
||||
|
||||
@ -124,7 +125,7 @@ func Test_regionalHostname(t *testing.T) {
|
||||
t.Run(tt.name, func(t *testing.T) {
|
||||
p := CloudFlareProvider{RegionKey: tt.args.defaultRegionKey}
|
||||
got := p.regionalHostname(tt.args.endpoint)
|
||||
assert.Equal(t, got, tt.want)
|
||||
assert.Equal(t, tt.want, got)
|
||||
})
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user