2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 66
66
<dependency >
67
67
<groupId >com.google.cloud</groupId >
68
68
<artifactId >google-cloud-shared-dependencies</artifactId >
69
- <version >3.10.1 </version >
69
+ <version >3.11.0 </version >
70
70
<type >pom</type >
71
71
<scope >import</scope >
72
72
</dependency >
Original file line number Diff line number Diff line change 36
36
import com .google .cloud .bigtable .data .v2 .BigtableDataClient ;
37
37
import com .google .cloud .bigtable .data .v2 .BigtableDataSettings ;
38
38
import com .google .cloud .bigtable .data .v2 .FakeServiceBuilder ;
39
- import com .google .cloud .bigtable .data .v2 .internal .NameUtil ;
40
39
import com .google .cloud .bigtable .data .v2 .models .ConditionalRowMutation ;
41
40
import com .google .cloud .bigtable .data .v2 .models .Mutation ;
42
41
import com .google .cloud .bigtable .data .v2 .models .Query ;
@@ -64,7 +63,7 @@ public class HeadersTest {
64
63
private static final String INSTANCE_ID = "fake-instance" ;
65
64
private static final String TABLE_ID = "fake-table" ;
66
65
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 ;
68
67
private static final String APP_PROFILE_ID = "fake-profile" ;
69
68
private static final String TEST_FIXED_HEADER_STRING = "test_fixed_header" ;
70
69
0 commit comments