From 8598e1e92b20bf992cf099afdcca9ef9a62ebe10 Mon Sep 17 00:00:00 2001 From: Dmitriy Tverdiakov <11927660+injectives@users.noreply.github.com> Date: Thu, 11 Sep 2025 12:31:42 +0100 Subject: [PATCH] test: fix ReactiveResultRecordPublisherVerificationIT --- .../reactive/ReactiveResultRecordPublisherVerificationIT.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/driver/src/test/java/org/neo4j/driver/tck/reactive/ReactiveResultRecordPublisherVerificationIT.java b/driver/src/test/java/org/neo4j/driver/tck/reactive/ReactiveResultRecordPublisherVerificationIT.java index adba4a1932..5288170862 100644 --- a/driver/src/test/java/org/neo4j/driver/tck/reactive/ReactiveResultRecordPublisherVerificationIT.java +++ b/driver/src/test/java/org/neo4j/driver/tck/reactive/ReactiveResultRecordPublisherVerificationIT.java @@ -77,7 +77,7 @@ public Publisher createPublisher(long elements) { public Publisher createFailedPublisher() { var session = driver.session(ReactiveSession.class); // Please note that this publisher fails on run stage. - return Mono.fromDirect(flowPublisherToFlux(session.run("RETURN 5/0"))) + return Mono.fromDirect(flowPublisherToFlux(session.run("not query"))) .flatMapMany(r -> Flux.from(flowPublisherToFlux(r.records()))); } }