We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
containsExactly
1 parent b2b1e2d commit fd9768aCopy full SHA for fd9768a
spring-graphql-test/src/main/java/org/springframework/graphql/test/tester/DefaultGraphQlTester.java
@@ -589,7 +589,7 @@ public EntityList<E> containsExactly(E... elements) {
589
List<E> expected = Arrays.asList(elements);
590
AssertionErrors.assertTrue(
591
"List at path '" + getPath() + "' should have contained exactly " + expected,
592
- getEntity().containsAll(expected));
+ getEntity().equals(expected));
593
});
594
return this;
595
}
0 commit comments