File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed
java-showcase/gapic-showcase/src/test/java/com/google/showcase/v1beta1/it Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff 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 );
You can’t perform that action at this time.
0 commit comments