Skip to content

Commit

Permalink
add t.Parallel()
Browse files Browse the repository at this point in the history
  • Loading branch information
vaskoz committed Sep 10, 2018
1 parent a790a60 commit f68c64e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions day20/problem_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ func createTwoIndependentLists() (*Node, *Node, *Node) {
}

func TestFindCommonNode(t *testing.T) {
t.Parallel()
one, two, common := createTwoSharedLists()
if result := FindCommonNode(one, two); result != common {
t.Error("Expected these two be the same pointer")
Expand Down

0 comments on commit f68c64e

Please sign in to comment.