Skip to content

Commit 66f55ce

Browse files
committed
Fix testLatestDeps
1 parent 0295025 commit 66f55ce

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

instrumentation/mongo/mongo-common/testing/src/main/java/io/opentelemetry/instrumentation/mongo/testing/AbstractMongoClientTest.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,10 @@ void testCreateCollectionWithAlreadyBuiltClientOptions() {
492492
"{\"create\":\"" + collectionName + "\",\"capped\":\"?\"}",
493493
"{\"create\":\""
494494
+ collectionName
495-
+ "\",\"capped\":\"?\",\"$db\":\"?\",\"$readPreference\":{\"mode\":\"?\"}}"))));
495+
+ "\",\"capped\":\"?\",\"$db\":\"?\",\"$readPreference\":{\"mode\":\"?\"}}",
496+
"{\"create\":\""
497+
+ collectionName
498+
+ "\",\"capped\":\"?\",\"$db\":\"?\",\"lsid\":{\"id\":\"?\"}}"))));
496499
}
497500

498501
protected String createCollectionName() {

0 commit comments

Comments
 (0)