Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 96aaa2a

Browse files
authoredJun 8, 2023
deps: update shared dependencies to 3.11.0 (#1783)
Opening in favor of #1782
1 parent 5d89c14 commit 96aaa2a

File tree

2 files changed

+2
-3
lines changed
  • google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/data/v2/stub
  • google-cloud-bigtable-deps-bom

2 files changed

+2
-3
lines changed
 

‎google-cloud-bigtable-deps-bom/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
<dependency>
6767
<groupId>com.google.cloud</groupId>
6868
<artifactId>google-cloud-shared-dependencies</artifactId>
69-
<version>3.10.1</version>
69+
<version>3.11.0</version>
7070
<type>pom</type>
7171
<scope>import</scope>
7272
</dependency>

‎google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/data/v2/stub/HeadersTest.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
import com.google.cloud.bigtable.data.v2.BigtableDataClient;
3737
import com.google.cloud.bigtable.data.v2.BigtableDataSettings;
3838
import com.google.cloud.bigtable.data.v2.FakeServiceBuilder;
39-
import com.google.cloud.bigtable.data.v2.internal.NameUtil;
4039
import com.google.cloud.bigtable.data.v2.models.ConditionalRowMutation;
4140
import com.google.cloud.bigtable.data.v2.models.Mutation;
4241
import com.google.cloud.bigtable.data.v2.models.Query;
@@ -64,7 +63,7 @@ public class HeadersTest {
6463
private static final String INSTANCE_ID = "fake-instance";
6564
private static final String TABLE_ID = "fake-table";
6665
private static final String TABLE_NAME =
67-
NameUtil.formatTableName(PROJECT_ID, INSTANCE_ID, TABLE_ID);
66+
"projects%2F" + PROJECT_ID + "%2Finstances%2F" + INSTANCE_ID + "%2Ftables%2F" + TABLE_ID;
6867
private static final String APP_PROFILE_ID = "fake-profile";
6968
private static final String TEST_FIXED_HEADER_STRING = "test_fixed_header";
7069

0 commit comments

Comments
 (0)
Failed to load comments.