Skip to content

Commit 7a19af0

Browse files
committed
Minor fix integration test
1 parent 14744ae commit 7a19af0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/test/java/org/vss/AbstractKVStoreIntegrationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ void putShouldSucceedWhenSingleObjectPutOperation() {
4646
response = getObject("k2");
4747
assertThat(response.getKey(), is("k2"));
4848
assertThat(response.getVersion(), is(1L));
49-
assertThat(response.getValue().toStringUtf8(), is("k1v3"));
49+
assertThat(response.getValue().toStringUtf8(), is("k2v3"));
5050

5151
assertThat(getObject(KVStore.GLOBAL_VERSION_KEY).getVersion(), is(5L));
5252
}

0 commit comments

Comments
 (0)