Skip to content

Commit

Permalink
YARN-11244. Fix CheckStyle.
Browse files Browse the repository at this point in the history
  • Loading branch information
slfan1989 committed Mar 1, 2025
1 parent 0019cb9 commit 71c7af2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@
import org.apache.hadoop.yarn.server.resourcemanager.security.AMRMTokenSecretManager;
import org.apache.hadoop.yarn.server.utils.BuilderUtils;
import org.apache.hadoop.yarn.util.Records;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Timeout;
import org.junit.jupiter.params.ParameterizedTest;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ public void testGetYarnConfWithRmHaId() throws IOException {
YarnConfiguration result = YarnClientUtils.getYarnConfWithRmHaId(conf);

assertSameConf(conf, result);
assertEquals( "rm0", result.get(YarnConfiguration.RM_HA_ID),
assertEquals("rm0", result.get(YarnConfiguration.RM_HA_ID),
"RM_HA_ID was changed when it shouldn't have been: "
+ result.get(YarnConfiguration.RM_HA_ID));

Expand Down

0 comments on commit 71c7af2

Please # to comment.