Skip to content

Commit 182a517

Browse files
authored
Merge branch 'main' into cindy/selective-gapic
2 parents 5fad1fe + b77a32b commit 182a517

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

java-showcase/gapic-showcase/src/test/java/com/google/showcase/v1beta1/it/ITHttpAnnotation.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
import com.google.showcase.v1beta1.it.util.TestClientInitializer;
3232
import java.io.IOException;
3333
import java.io.InputStreamReader;
34+
import java.nio.charset.StandardCharsets;
3435
import java.security.GeneralSecurityException;
3536
import java.util.List;
3637
import java.util.Map;
@@ -73,7 +74,8 @@ static void createClients() throws IOException, GeneralSecurityException {
7374
Objects.requireNonNull(
7475
ITHttpAnnotation.class
7576
.getClassLoader()
76-
.getResourceAsStream("compliance_suite.json"))),
77+
.getResourceAsStream("compliance_suite.json")),
78+
StandardCharsets.UTF_8),
7779
builder);
7880
complianceSuite = builder.build();
7981

0 commit comments

Comments
 (0)