summaryrefslogtreecommitdiffstats
path: root/utils/lru_test.go
diff options
context:
space:
mode:
authorChris <ccbrown112@gmail.com>2017-10-30 11:57:24 -0500
committerGitHub <noreply@github.com>2017-10-30 11:57:24 -0500
commitc5e8cb25caa39ed018ede5270e1566e8f7448396 (patch)
tree80f9f8957d4ff8458ecf9631135c916df25544bd /utils/lru_test.go
parent63df41b91110bac06baffef87fe0c1952b47ac93 (diff)
downloadchat-c5e8cb25caa39ed018ede5270e1566e8f7448396.tar.gz
chat-c5e8cb25caa39ed018ede5270e1566e8f7448396.tar.bz2
chat-c5e8cb25caa39ed018ede5270e1566e8f7448396.zip
simplify things (#7735)
Diffstat (limited to 'utils/lru_test.go')
-rw-r--r--utils/lru_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/lru_test.go b/utils/lru_test.go
index ab7d0e50a..987163cd3 100644
--- a/utils/lru_test.go
+++ b/utils/lru_test.go
@@ -85,10 +85,10 @@ func TestLRUAdd(t *testing.T) {
t.Fatalf("err: %v", err)
}
- if l.Add(1, 1) == true || evictCounter != 0 {
+ if l.Add(1, 1) || evictCounter != 0 {
t.Errorf("should not have an eviction")
}
- if l.Add(2, 2) == false || evictCounter != 1 {
+ if !l.Add(2, 2) || evictCounter != 1 {
t.Errorf("should have an eviction")
}
}