File tree 2 files changed +3
-2
lines changed
google-cloud-storage/src/test/java/com/google/cloud/storage/it
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -86,7 +86,8 @@ public void grpcStorageOptions_allowSpecifyingInterceptor() throws Exception {
86
86
System .out .println ("requestParams = " + requestParams );
87
87
88
88
String expected = String .format ("project=projects/%s" , options .getProjectId ());
89
- assertThat (requestParams ).contains (expected );
89
+ String expectedEncoded = String .format ("project=projects%%2F%s" , options .getProjectId ());
90
+ assertThat (requestParams ).containsAnyOf (expected , expectedEncoded );
90
91
}
91
92
92
93
private static final class Interceptor implements ClientInterceptor {
Original file line number Diff line number Diff line change 54
54
<project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
55
55
<github .global.server>github</github .global.server>
56
56
<site .installationModule>google-cloud-storage-parent</site .installationModule>
57
- <google .cloud.shared-dependencies.version>3.10.1 </google .cloud.shared-dependencies.version>
57
+ <google .cloud.shared-dependencies.version>3.11.0 </google .cloud.shared-dependencies.version>
58
58
</properties >
59
59
60
60
<dependencyManagement >
You can’t perform that action at this time.
0 commit comments