Skip to content

Commit

Permalink
Merge pull request #105 from Daniel-B-Smith/patch-1
Browse files Browse the repository at this point in the history
Fix typo in test name.
  • Loading branch information
bradfitz committed Sep 24, 2018
2 parents 24b0969 + 3fbe15d commit 6f2cf27
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 6f2cf27

Please sign in to comment.