Skip to content

Commit

Permalink
Internal change
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 331559079
Change-Id: I2ab9360d48bea75bf157fdba5436bc44b05cfb02
  • Loading branch information
Tsunami Team authored and copybara-github committed Sep 14, 2020
1 parent 0075d89 commit 0cf2940
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,9 @@ public void assertCharSequencesStoredForNames(Set<String> expectedNames) {
assertThat(archivedCharSequenceData.keySet()).containsExactlyElementsIn(expectedNames);
}

@SuppressWarnings("TruthIncompatibleType")
public void assertCharSequencesStoredWithValues(Collection<byte[]> expectedValues) {
assertThat(archivedCharSequenceData.values()).containsExactlyElementsIn(expectedValues);
assertThat(archivedCharSequenceData.values())
.containsExactlyElementsIn(/* expected: CharSequence, actual: byte[] */ expectedValues);
}
}

0 comments on commit 0cf2940

Please sign in to comment.