Skip to content

Commit b1e2ead

Browse files
committed
Fix codenarc line length error
1 parent 5d8f317 commit b1e2ead

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

driver-reactive-streams/src/test/functional/com/mongodb/reactivestreams/client/gridfs/GridFSPublisherSpecification.groovy

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,8 @@ class GridFSPublisherSpecification extends FunctionalSpecification {
122122
def options = new GridFSUploadOptions().chunkSizeBytes(chunkSize)
123123

124124
when:
125-
def fileId = run(MINUTES.toMillis(5), gridFSBucket.&uploadFromPublisher, 'myFile', createPublisher(ByteBuffer.wrap(contentBytes)), options)
125+
def fileId = run(MINUTES.toMillis(5), gridFSBucket.&uploadFromPublisher, 'myFile',
126+
createPublisher(ByteBuffer.wrap(contentBytes)), options)
126127

127128
then:
128129
run(filesCollection.&countDocuments) == 1

0 commit comments

Comments
 (0)