We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8233f67 commit 941e13bCopy full SHA for 941e13b
storage/utils_test.go
@@ -17,10 +17,10 @@ func (s *storageSuite) TestSplitName(c *C) {
17
}
18
19
successes := map[string][]string{
20
- "foo/bar": []string{"foo", "bar"},
21
- "policy-with-dashes/quux": []string{"policy-with-dashes", "quux"},
22
- "policy_with_underscores/quux": []string{"policy_with_underscores", "quux"},
23
- "policy.with.periods/quux": []string{"policy.with.periods", "quux"},
+ "foo/bar": {"foo", "bar"},
+ "policy-with-dashes/quux": {"policy-with-dashes", "quux"},
+ "policy_with_underscores/quux": {"policy_with_underscores", "quux"},
+ "policy.with.periods/quux": {"policy.with.periods", "quux"},
24
25
26
for _, fail := range failures {
0 commit comments