Skip to content

Commit 5ff1ed4

Browse files
committed
Fix test exception message
1 parent 47053e7 commit 5ff1ed4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

driver-core/src/test/functional/com/mongodb/internal/connection/ReplyHeaderSpecification.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ class ReplyHeaderSpecification extends Specification {
160160

161161
then:
162162
def ex = thrown(MongoInternalException)
163-
ex.getMessage() == 'The reply message length 400 is less than the maximum message length 399'
163+
ex.getMessage() == 'The reply message length 400 is greater than the maximum message length 399'
164164
}
165165

166166
def 'should throw MongoInternalException on num documents < 0'() {

0 commit comments

Comments
 (0)