Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
apply the fix from #9128 to the other instance of the test
  • Loading branch information
vandonr committed Sep 4, 2025
commit f73f0b4b72fd38881c5c96c196f0e6622b44143a
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ abstract class GraphQLTest extends VersionedNamingTestBase {
.type(newTypeWiring("Book").dataFetcher("year", new DataFetcher<CompletionStage<Integer>>() {
@Override
CompletionStage<Integer> get(DataFetchingEnvironment environment) throws Exception {
return CompletableFuture.completedStage(2015)
return CompletableFuture.completedFuture(2015)
}
}))
.build()
Expand Down
Loading