Skip to content

Commit

Permalink
Automatic code cleanup.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 430096273
  • Loading branch information
Googler authored and copybara-github committed Feb 22, 2022
1 parent 88499f6 commit 3fd0ffa
Showing 1 changed file with 0 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ public void testMostlyEmpty_originalCommandLine() {
.asStreamProto(null)
.getStructuredCommandLine();

assertThat(line).isNotNull();
assertThat(line.getCommandLineLabel()).isEqualTo("original");
checkCommandLineSectionLabels(line);
assertThat(line.getSections(0).getChunkList().getChunk(0)).isEqualTo("testblaze");
Expand All @@ -91,7 +90,6 @@ public void testMostlyEmpty_canonicalCommandLine() {
.asStreamProto(null)
.getStructuredCommandLine();

assertThat(line).isNotNull();
assertThat(line.getCommandLineLabel()).isEqualTo("canonical");
checkCommandLineSectionLabels(line);

Expand Down Expand Up @@ -125,7 +123,6 @@ public void testActiveBazelrcs_originalCommandLine() throws OptionsParsingExcept
.asStreamProto(null)
.getStructuredCommandLine();

assertThat(line).isNotNull();
assertThat(line.getCommandLineLabel()).isEqualTo("original");
checkCommandLineSectionLabels(line);

Expand Down Expand Up @@ -167,7 +164,6 @@ public void testPassedInBazelrcs_originalCommandLine() throws OptionsParsingExce
.asStreamProto(null)
.getStructuredCommandLine();

assertThat(line).isNotNull();
assertThat(line.getCommandLineLabel()).isEqualTo("original");
checkCommandLineSectionLabels(line);

Expand Down Expand Up @@ -204,7 +200,6 @@ public void testBazelrcs_canonicalCommandLine() throws OptionsParsingException {
.asStreamProto(null)
.getStructuredCommandLine();

assertThat(line).isNotNull();
assertThat(line.getCommandLineLabel()).isEqualTo("canonical");
checkCommandLineSectionLabels(line);

Expand Down Expand Up @@ -246,7 +241,6 @@ public void testOptionsAtVariousPriorities_originalCommandLine() throws OptionsP
.asStreamProto(null)
.getStructuredCommandLine();

assertThat(line).isNotNull();
assertThat(line.getCommandLineLabel()).isEqualTo("original");
checkCommandLineSectionLabels(line);

Expand Down Expand Up @@ -286,7 +280,6 @@ public void testOptionsAtVariousPriorities_canonicalCommandLine() throws Options
.asStreamProto(null)
.getStructuredCommandLine();

assertThat(line).isNotNull();
assertThat(line.getCommandLineLabel()).isEqualTo("canonical");
checkCommandLineSectionLabels(line);

Expand Down Expand Up @@ -325,7 +318,6 @@ public void testExpansionOption_originalCommandLine() throws OptionsParsingExcep
.asStreamProto(null)
.getStructuredCommandLine();

assertThat(line).isNotNull();
assertThat(line.getCommandLineLabel()).isEqualTo("original");
checkCommandLineSectionLabels(line);

Expand Down Expand Up @@ -354,7 +346,6 @@ public void testExpansionOption_canonicalCommandLine() throws OptionsParsingExce
.asStreamProto(null)
.getStructuredCommandLine();

assertThat(line).isNotNull();
assertThat(line.getCommandLineLabel()).isEqualTo("canonical");
checkCommandLineSectionLabels(line);

Expand Down Expand Up @@ -396,7 +387,6 @@ public void testOptionWithImplicitRequirement_originalCommandLine()
.asStreamProto(null)
.getStructuredCommandLine();

assertThat(line).isNotNull();
assertThat(line.getCommandLineLabel()).isEqualTo("original");
checkCommandLineSectionLabels(line);

Expand Down Expand Up @@ -427,7 +417,6 @@ public void testOptionWithImplicitRequirement_canonicalCommandLine()
.asStreamProto(null)
.getStructuredCommandLine();

assertThat(line).isNotNull();
assertThat(line.getCommandLineLabel()).isEqualTo("canonical");
checkCommandLineSectionLabels(line);

Expand Down

0 comments on commit 3fd0ffa

Please sign in to comment.