Skip to content

Commit 3f18a24

Browse files
chore: generate libraries at Mon Apr 7 20:36:28 UTC 2025
1 parent 0f8286b commit 3f18a24

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

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

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -118,13 +118,14 @@ static void destroyClients() throws InterruptedException {
118118

119119
@Test
120120
void verifyByteSizeOfExtremePayload() throws IOException {
121-
InputStreamReader streamReader = new InputStreamReader(
122-
Objects.requireNonNull(
123-
ITHttpAnnotation.class
124-
.getClassLoader()
125-
.getResourceAsStream("compliance_suite.json")));
121+
InputStreamReader streamReader =
122+
new InputStreamReader(
123+
Objects.requireNonNull(
124+
ITHttpAnnotation.class
125+
.getClassLoader()
126+
.getResourceAsStream("compliance_suite.json")));
126127
int count = 0;
127-
while(streamReader.ready()) {
128+
while (streamReader.ready()) {
128129
count += streamReader.read();
129130
}
130131
assertThat(count).isEqualTo(434436);

0 commit comments

Comments
 (0)