Skip to content

Commit

Permalink
Fix typo in test name.
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Smith committed Sep 24, 2018
1 parent 24b0969 commit 3fbe15d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lru/lru_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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},
}
Expand Down

0 comments on commit 3fbe15d

Please sign in to comment.