Skip to content

Commit 76f1ca3

Browse files
authored
test: fix ReactiveResultRecordPublisherVerificationIT (#1703)
1 parent 3d55bed commit 76f1ca3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

driver/src/test/java/org/neo4j/driver/tck/reactive/ReactiveResultRecordPublisherVerificationIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public Publisher<Record> createPublisher(long elements) {
7777
public Publisher<Record> createFailedPublisher() {
7878
var session = driver.session(ReactiveSession.class);
7979
// Please note that this publisher fails on run stage.
80-
return Mono.fromDirect(flowPublisherToFlux(session.run("RETURN 5/0")))
80+
return Mono.fromDirect(flowPublisherToFlux(session.run("not query")))
8181
.flatMapMany(r -> Flux.from(flowPublisherToFlux(r.records())));
8282
}
8383
}

0 commit comments

Comments
 (0)