registry/auth/token: use consistent names for test-tables
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
f884a079df
commit
5e67a40e08
1 changed files with 5 additions and 6 deletions
|
@ -7,7 +7,7 @@ import (
|
||||||
|
|
||||||
func TestAudienceList_Unmarshal(t *testing.T) {
|
func TestAudienceList_Unmarshal(t *testing.T) {
|
||||||
t.Run("OK", func(t *testing.T) {
|
t.Run("OK", func(t *testing.T) {
|
||||||
testCases := []struct {
|
tests := []struct {
|
||||||
value string
|
value string
|
||||||
expected AudienceList
|
expected AudienceList
|
||||||
}{
|
}{
|
||||||
|
@ -25,18 +25,17 @@ func TestAudienceList_Unmarshal(t *testing.T) {
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, testCase := range testCases {
|
for _, tc := range tests {
|
||||||
testCase := testCase
|
tc := tc
|
||||||
|
|
||||||
t.Run("", func(t *testing.T) {
|
t.Run("", func(t *testing.T) {
|
||||||
var actual AudienceList
|
var actual AudienceList
|
||||||
|
|
||||||
err := json.Unmarshal([]byte(testCase.value), &actual)
|
err := json.Unmarshal([]byte(tc.value), &actual)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
assertStringListEqual(t, testCase.expected, actual)
|
assertStringListEqual(t, tc.expected, actual)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue