Skip to content
This repository was archived by the owner on Jan 19, 2022. It is now read-only.

Commit a79bb9f

Browse files
committed
Update reactive streams to 1.0.0.RC4
reactive-streams/reactive-streams-jvm#257
1 parent 329e99c commit a79bb9f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

driver/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ archivesBaseName = 'mongodb-driver-reactivestreams'
2121

2222
dependencies {
2323
compile 'org.mongodb:mongodb-driver-async:3.0.0'
24-
compile 'org.reactivestreams:reactive-streams:1.0.0.RC3'
24+
compile 'org.reactivestreams:reactive-streams:1.0.0.RC4'
2525

26-
testCompile 'org.reactivestreams:reactive-streams-tck:1.0.0.RC3'
26+
testCompile 'org.reactivestreams:reactive-streams-tck:1.0.0.RC4'
2727
}
2828

2929
task uberJar(type: Jar) {

driver/src/test/tck/com/mongodb/reactivestreams/client/MongoIterablePublisherVerification.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ class MongoIterablePublisherVerification extends PublisherVerification<Document>
103103
}
104104

105105
@Override
106-
Publisher<Integer> createErrorStatePublisher() {
106+
Publisher<Document> createFailedPublisher() {
107107
null
108108
}
109109

driver/src/test/tck/com/mongodb/reactivestreams/client/SingleResultPublisherVerification.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class SingleResultPublisherVerification extends PublisherVerification<Document>
4343
}
4444

4545
@Override
46-
Publisher<Document> createErrorStatePublisher() {
46+
Publisher<Document> createFailedPublisher() {
4747
null
4848
}
4949

0 commit comments

Comments
 (0)