We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a5027a commit fd78e57Copy full SHA for fd78e57
1 file changed
operator-framework-core/src/test/java/io/javaoperatorsdk/operator/api/reconciler/ReconcileUtilsTest.java
@@ -519,7 +519,6 @@ void latestDistinctListReturnsListType() {
519
List<Pod> result =
520
Stream.of(pod1v1, pod1v2, pod2v1).collect(ReconcileUtils.latestDistinctList());
521
522
- assertThat(result).isInstanceOf(List.class);
523
assertThat(result).hasSize(2);
524
525
// Verify the list contains the correct resources
@@ -565,7 +564,6 @@ void latestDistinctSetReturnsSetType() {
565
564
566
Set<Pod> result = Stream.of(pod1v1, pod1v2, pod2v1).collect(ReconcileUtils.latestDistinctSet());
567
568
- assertThat(result).isInstanceOf(java.util.Set.class);
569
570
571
// Verify the set contains the correct resources
0 commit comments