Skip to content

Commit

Permalink
upgrade graphql-java to 20.4
Browse files Browse the repository at this point in the history
  • Loading branch information
akulkarni8 committed Oct 4, 2023
1 parent 2fec08f commit 7ffce06
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
<properties>
<junit5.version>5.5.0</junit5.version>
<lombok.version>1.18.8</lombok.version>
<graphql-java.version>17.4</graphql-java.version>
<graphql-java.version>20.4</graphql-java.version>
<jacoco.enabled>true</jacoco.enabled>
<jacoco.version>0.8.4</jacoco.version>
<maven-gpg-plugin.version>3.0.1</maven-gpg-plugin.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7ffce06

Please sign in to comment.