Skip to content

Commit

Permalink
Fix type mismatches in assertions. These are comparing Iterable<T> wi…
Browse files Browse the repository at this point in the history
…th T.

PiperOrigin-RevId: 329733219
  • Loading branch information
Googler authored and copybara-github committed Sep 2, 2020
1 parent abef7d3 commit 8a227ad
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ public void testActionGraph() throws Exception {
assertThat(linkstampCompileActions).hasSize(1);
ActionAnalysisMetadata linkstampCompileAction = linkstampCompileActions.get(0);
assertThat(indexAction.getInputs().toList())
.doesNotContain(linkstampCompileAction.getOutputs());
.containsNoneIn(linkstampCompileAction.getOutputs());

assertThat(indexAction.getArguments())
.containsAtLeast(
Expand Down

0 comments on commit 8a227ad

Please sign in to comment.