vpapavas commented on a change in pull request #11598:
URL: https://github.com/apache/kafka/pull/11598#discussion_r768514340



##########
File path: 
streams/src/test/java/org/apache/kafka/streams/integration/IQv2StoreIntegrationTest.java
##########
@@ -279,34 +344,34 @@ public static void before()
                 final RecordMetadata recordMetadata = future.get(1, 
TimeUnit.MINUTES);
                 assertThat(recordMetadata.hasOffset(), is(true));
                 INPUT_POSITION.withComponent(
-                    recordMetadata.topic(),
-                    recordMetadata.partition(),
-                    recordMetadata.offset()
+                        recordMetadata.topic(),
+                        recordMetadata.partition(),
+                        recordMetadata.offset()
                 );
             }
         }
 
         assertThat(INPUT_POSITION, equalTo(
-            Position
-                .emptyPosition()
-                .withComponent(INPUT_TOPIC_NAME, 0, 1L)
-                .withComponent(INPUT_TOPIC_NAME, 1, 0L)
+                Position
+                        .emptyPosition()
+                        .withComponent(INPUT_TOPIC_NAME, 0, 1L)
+                        .withComponent(INPUT_TOPIC_NAME, 1, 1L)
         ));
     }
 
     @Before
     public void beforeTest() {
         final StoreSupplier<?> supplier = storeToTest.supplier();
         final Properties streamsConfig = streamsConfiguration(
-            cache,
-            log,
-            storeToTest.name()
+                cache,
+                log,
+                storeToTest.name()

Review comment:
       Hmm, I haven't made these changes. I guess Intellij took it upon itself 
to format these lines




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to