mirror of
https://github.com/distribution/distribution
synced 2025-02-17 20:39:35 +01:00
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
@ -7,7 +7,7 @@ import (
|
||||
|
||||
func TestAudienceList_Unmarshal(t *testing.T) {
|
||||
t.Run("OK", func(t *testing.T) {
|
||||
testCases := []struct {
|
||||
tests := []struct {
|
||||
value string
|
||||
expected AudienceList
|
||||
}{
|
||||
@ -25,18 +25,17 @@ func TestAudienceList_Unmarshal(t *testing.T) {
|
||||
},
|
||||
}
|
||||
|
||||
for _, testCase := range testCases {
|
||||
testCase := testCase
|
||||
|
||||
for _, tc := range tests {
|
||||
tc := tc
|
||||
t.Run("", func(t *testing.T) {
|
||||
var actual AudienceList
|
||||
|
||||
err := json.Unmarshal([]byte(testCase.value), &actual)
|
||||
err := json.Unmarshal([]byte(tc.value), &actual)
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
assertStringListEqual(t, testCase.expected, actual)
|
||||
assertStringListEqual(t, tc.expected, actual)
|
||||
})
|
||||
}
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user