Skip to content

Commit

Permalink
Update server_test.go (#292)
Browse files Browse the repository at this point in the history
  • Loading branch information
nasnoisaac authored Sep 13, 2021
1 parent 077953e commit d73c60f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kv/server/server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ func TestRawScanAfterRawPut1(t *testing.T) {

resp, err := server.RawScan(nil, scan)
assert.Nil(t, err)
assert.Equal(t, len(resp.Kvs), len(expectedKeys))
assert.Equal(t, len(expectedKeys), len(resp.Kvs))
for i, kv := range resp.Kvs {
assert.Equal(t, expectedKeys[i], kv.Key)
assert.Equal(t, append([]byte{233}, expectedKeys[i]...), kv.Value)
Expand Down

0 comments on commit d73c60f

Please sign in to comment.