Skip to content

Commit 4ed4def

Browse files
committed
Fix test
1 parent 4e43912 commit 4ed4def

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/boot-starter/src/test/java/com/introproventures/graphql/jpa/query/boot/test/autoconfigure/GraphQLJpaQueryGraphQlSourceAutoConfigurationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,6 @@ public void contextIsAutoConfigured() {
7979
DataLoaderRegistry dataLoaderRegistry = newRegistry().build();
8080
batchLoaderRegistry.registerDataLoaders(dataLoaderRegistry, newContext().build());
8181

82-
assertThat(dataLoaderRegistry.getDataLoadersMap()).isEmpty();
82+
assertThat(dataLoaderRegistry.getDataLoadersMap()).isNotEmpty().containsOnlyKeys("Author.books", "Book.author");
8383
}
8484
}

0 commit comments

Comments
 (0)