aboutsummaryrefslogtreecommitdiff
path: root/test/typeparam/orderedmapsimp.dir/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/typeparam/orderedmapsimp.dir/main.go')
-rw-r--r--test/typeparam/orderedmapsimp.dir/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/typeparam/orderedmapsimp.dir/main.go b/test/typeparam/orderedmapsimp.dir/main.go
index ac4cee6a78..978f1e763c 100644
--- a/test/typeparam/orderedmapsimp.dir/main.go
+++ b/test/typeparam/orderedmapsimp.dir/main.go
@@ -17,7 +17,7 @@ func TestMap() {
panic(fmt.Sprintf("unexpectedly found %q in empty map", []byte("a")))
}
- for _, c := range []int{ 'a', 'c', 'b' } {
+ for _, c := range []int{'a', 'c', 'b'} {
if !m.Insert([]byte(string(c)), c) {
panic(fmt.Sprintf("key %q unexpectedly already present", []byte(string(c))))
}