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.
1 parent e3ac804 commit 4e63970Copy full SHA for 4e63970
spring-graphql-test/src/main/java/org/springframework/graphql/test/tester/DefaultGraphQlTester.java
@@ -590,7 +590,7 @@ public EntityList<E> containsExactly(E... elements) {
590
List<E> expected = Arrays.asList(elements);
591
AssertionErrors.assertTrue(
592
"List at path '" + getPath() + "' should have contained exactly " + expected,
593
- getEntity().containsAll(expected));
+ getEntity().equals(expected));
594
});
595
return this;
596
}
0 commit comments