Skip to content

Commit

Permalink
day 52 - forgot to add t.Parallel()
Browse files Browse the repository at this point in the history
  • Loading branch information
vaskoz committed Oct 14, 2018
1 parent 1bdc6a9 commit 265130c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions day52/problem_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package day52
import "testing"

func TestLRUCache(t *testing.T) {
t.Parallel()
lru := NewLRU(3)
for i := 0; i < 6; i++ {
lru.Set(i, i+1)
Expand Down

0 comments on commit 265130c

Please sign in to comment.