Skip to content

Commit

Permalink
Backport to branch(3.12) : Bump the dependencies group across 1 direc…
Browse files Browse the repository at this point in the history
…tory with 2 updates (#2557)

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: brfrn169 <[email protected]>
  • Loading branch information
3 people authored Feb 27, 2025
1 parent 0607792 commit a36e580
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ subprojects {
guavaVersion = '32.1.3-jre'
slf4jVersion = '1.7.36'
cassandraDriverVersion = '3.11.5'
azureCosmosVersion = '4.55.1'
azureCosmosVersion = '4.67.0'
jooqVersion = '3.14.16'
awssdkVersion = '2.24.0'
commonsDbcp2Version = '2.11.0'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -506,14 +506,12 @@ public void truncateTable_WithExistingRecords_ShouldDeleteAllRecords() throws Ex
verify(container)
.queryItems(
eq("SELECT t.id, t.concatenatedPartitionKey FROM " + "t"),
refEq(new CosmosQueryRequestOptions()),
any(CosmosQueryRequestOptions.class),
eq(Record.class));
verify(container)
.deleteItem(
eq("id1"), refEq(new PartitionKey("p1")), refEq(new CosmosItemRequestOptions()));
.deleteItem(eq("id1"), refEq(new PartitionKey("p1")), any(CosmosItemRequestOptions.class));
verify(container)
.deleteItem(
eq("id2"), refEq(new PartitionKey("p2")), refEq(new CosmosItemRequestOptions()));
.deleteItem(eq("id2"), refEq(new PartitionKey("p2")), any(CosmosItemRequestOptions.class));
}

@Test
Expand Down Expand Up @@ -544,7 +542,7 @@ public void getNamespaceTableNames_ShouldGetTableNamesProperly() throws Executio
verify(container)
.queryItems(
eq("SELECT * FROM metadata WHERE metadata.id LIKE 'ns.%'"),
refEq(new CosmosQueryRequestOptions()),
any(CosmosQueryRequestOptions.class),
eq(CosmosTableMetadata.class));
}

Expand Down

0 comments on commit a36e580

Please sign in to comment.