Skip to content

Commit 806371c

Browse files
authored
Merge pull request #19 from G8XSU/gradle-upgrade
Upgrade deps to support gradle-8.0
2 parents e1a88af + 61f1ce9 commit 806371c

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

app/build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
buildscript {
2-
ext.gradleVersion = '7.5.1'
3-
ext.protobufPlugInVersion = '0.8.12'
2+
ext.protobufPlugInVersion = '0.9.4'
43
ext.protobufVersion = '3.21.7'
54
ext.jerseyVersion = '3.1.0'
65
ext.junitVersion = '5.9.0'

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)