summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Smith <daniel.smith@datadoghq.com>2018-09-24 14:43:12 -0400
committerGitHub <noreply@github.com>2018-09-24 14:43:12 -0400
commit3fbe15d760cbf95787e9da4d16691f243fd13cdf (patch)
tree5e385ec531a89a6b2609391ff8a8926136776bdb
parent24b0969c4cb722950103eed87108c8d291a8df00 (diff)
downloadgolang-groupcache-3fbe15d760cbf95787e9da4d16691f243fd13cdf.tar.gz
Fix typo in test name.
-rw-r--r--lru/lru_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/lru/lru_test.go b/lru/lru_test.go
index b7d9d8a..a14f439 100644
--- a/lru/lru_test.go
+++ b/lru/lru_test.go
@@ -40,7 +40,7 @@ var getTests = []struct {
{"string_hit", "myKey", "myKey", true},
{"string_miss", "myKey", "nonsense", false},
{"simple_struct_hit", simpleStruct{1, "two"}, simpleStruct{1, "two"}, true},
- {"simeple_struct_miss", simpleStruct{1, "two"}, simpleStruct{0, "noway"}, false},
+ {"simple_struct_miss", simpleStruct{1, "two"}, simpleStruct{0, "noway"}, false},
{"complex_struct_hit", complexStruct{1, simpleStruct{2, "three"}},
complexStruct{1, simpleStruct{2, "three"}}, true},
}