Skip to content

Commit 5eb10d1

Browse files
committed
YARN-11262. Fix CheckStyle.
1 parent b3aaa47 commit 5eb10d1

File tree

1 file changed

+2
-2
lines changed
  • hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/test/java/org/apache/hadoop/yarn/server/resourcemanager/rmapp

1 file changed

+2
-2
lines changed

hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-resourcemanager/src/test/java/org/apache/hadoop/yarn/server/resourcemanager/rmapp/TestRMAppTransitions.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1071,7 +1071,7 @@ public void testAppRunningFailed(boolean pIsSecurityEnabled) throws Exception {
10711071
RMApp application = testCreateAppRunning(null);
10721072
RMAppAttempt appAttempt = application.getCurrentAppAttempt();
10731073
int expectedAttemptId = 1;
1074-
assertEquals(expectedAttemptId,
1074+
assertEquals(expectedAttemptId,
10751075
appAttempt.getAppAttemptId().getAttemptId());
10761076
// RUNNING => FAILED/RESTARTING event RMAppEventType.ATTEMPT_FAILED
10771077
assertTrue(maxAppAttempts > 1);
@@ -1083,7 +1083,7 @@ public void testAppRunningFailed(boolean pIsSecurityEnabled) throws Exception {
10831083
rmDispatcher.await();
10841084
assertAppState(RMAppState.ACCEPTED, application);
10851085
appAttempt = application.getCurrentAppAttempt();
1086-
assertEquals(++expectedAttemptId,
1086+
assertEquals(++expectedAttemptId,
10871087
appAttempt.getAppAttemptId().getAttemptId());
10881088
event =
10891089
new RMAppEvent(application.getApplicationId(),

0 commit comments

Comments
 (0)