Skip to content

Commit

Permalink
update naming
Browse files Browse the repository at this point in the history
  • Loading branch information
Hoanh An committed Sep 25, 2019
1 parent cc6eeb9 commit c255ab7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions interviewcake/reverse_linked_list_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ func TestReverseLinkedList(t *testing.T) {
}

for _, tt := range tests {
p := reverseLinkedList(tt.in)
common.Equal(t, tt.expected, linkedListToSlice(p))
node := reverseLinkedList(tt.in)
common.Equal(t, tt.expected, linkedListToSlice(node))
}
}

Expand Down

0 comments on commit c255ab7

Please sign in to comment.