File tree Expand file tree Collapse file tree 1 file changed +0
-2
lines changed
operator-framework-core/src/test/java/io/javaoperatorsdk/operator/api/reconciler Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Original file line number Diff line number Diff line change @@ -519,7 +519,6 @@ void latestDistinctListReturnsListType() {
519519 List <Pod > result =
520520 Stream .of (pod1v1 , pod1v2 , pod2v1 ).collect (ReconcileUtils .latestDistinctList ());
521521
522- assertThat (result ).isInstanceOf (List .class );
523522 assertThat (result ).hasSize (2 );
524523
525524 // Verify the list contains the correct resources
@@ -565,7 +564,6 @@ void latestDistinctSetReturnsSetType() {
565564
566565 Set <Pod > result = Stream .of (pod1v1 , pod1v2 , pod2v1 ).collect (ReconcileUtils .latestDistinctSet ());
567566
568- assertThat (result ).isInstanceOf (java .util .Set .class );
569567 assertThat (result ).hasSize (2 );
570568
571569 // Verify the set contains the correct resources
You can’t perform that action at this time.
0 commit comments