Skip to content

Commit

Permalink
modified: utils_test removeduplicate
Browse files Browse the repository at this point in the history
  • Loading branch information
ak1ra24 committed Dec 13, 2019
1 parent e953b7d commit f32c1dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utils/utils_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ func TestRemoveDuplicatesString(t *testing.T) {
{
name: "delete duplicate string slice",
args: args{
elements: []string{"test", "test", "test2"},
elements: []string{"test", "test"},
},
want: []string{"test", "test2"},
want: []string{"test"},
},
}
for _, tt := range tests {
Expand Down

0 comments on commit f32c1dd

Please sign in to comment.