Skip to content

Commit

Permalink
fix: TestZsetSort
Browse files Browse the repository at this point in the history
  • Loading branch information
PokIsemaine committed Apr 13, 2024
1 parent d70aa4a commit d63bab8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/gocase/unit/sort/sort_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -709,6 +709,6 @@ func TestZSetSort(t *testing.T) {

sortResult, err = rdb.LRange(ctx, "no-alpha-sorted", 0, -1).Result()
require.NoError(t, err)
require.Equal(t, []string{"21", "3", "123"}, sortResult)
require.Equal(t, []string{"123", "3", "21"}, sortResult)
})
}

0 comments on commit d63bab8

Please sign in to comment.