diff --git a/pom.xml b/pom.xml index 75bdf9a..c748263 100644 --- a/pom.xml +++ b/pom.xml @@ -37,7 +37,7 @@ 5.5.0 1.18.8 - 17.4 + 20.4 true 0.8.4 3.0.1 diff --git a/src/test/java/com/intuit/graphql/authorization/enforcement/AuthorizationTest.java b/src/test/java/com/intuit/graphql/authorization/enforcement/AuthorizationTest.java index 12f386e..db4a525 100644 --- a/src/test/java/com/intuit/graphql/authorization/enforcement/AuthorizationTest.java +++ b/src/test/java/com/intuit/graphql/authorization/enforcement/AuthorizationTest.java @@ -219,7 +219,7 @@ public void authzWithInvalidFieldTest() { assertTrue(result.getErrors().size() == 1); assertNull(result.getData()); assertTrue(result.getErrors().get(0).getMessage().contains( - "Validation error of type FieldUndefined: Field 'userName' in type 'Book' is undefined @ 'bookById/userName'")); + "Validation error (FieldUndefined@[bookById/userName]) : Field 'userName' in type 'Book' is undefined")); } @Test