File tree 1 file changed +2
-2
lines changed
src/test/java/com/google/devtools/build/lib/remote 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 19
19
import build .bazel .remote .execution .v2 .Digest ;
20
20
import build .bazel .remote .execution .v2 .RequestMetadata ;
21
21
import com .google .api .client .json .GenericJson ;
22
- import com .google .api .client .json .jackson2 . JacksonFactory ;
22
+ import com .google .api .client .json .gson . GsonFactory ;
23
23
import com .google .common .collect .ImmutableList ;
24
24
import com .google .common .util .concurrent .ListeningScheduledExecutorService ;
25
25
import com .google .common .util .concurrent .MoreExecutors ;
@@ -135,7 +135,7 @@ protected GrpcCacheClient newClient(
135
135
json .put ("client_secret" , "foo" );
136
136
json .put ("refresh_token" , "bar" );
137
137
Scratch scratch = new Scratch ();
138
- scratch .file (authTlsOptions .googleCredentials , new JacksonFactory ().toString (json ));
138
+ scratch .file (authTlsOptions .googleCredentials , new GsonFactory ().toString (json ));
139
139
140
140
CallCredentialsProvider callCredentialsProvider ;
141
141
try (InputStream in = scratch .resolve (authTlsOptions .googleCredentials ).getInputStream ()) {
You can’t perform that action at this time.
0 commit comments