You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix parameterized test names in CrudProseTest (#1775)
Previously, for a parameterized test like
CrudProseTest::testBulkWriteHandlesWriteErrorsAcrossBatches,
the test names in the JUnit XML output (and therefore in CI) were
[1] false
[2] true
Now the test names are
6. MongoClient.bulkWrite handles individual WriteErrors across batches--ordered:false
6. MongoClient.bulkWrite handles individual WriteErrors across batches--ordered:true
and appear in the IDEA UI like
6. MongoClient.bulkWrite handles individual WriteErrors across batches
--ordered:false
--ordered:true
and in Gradle output like
6. MongoClient.bulkWrite handles individual WriteErrors across batches
Test 6. MongoClient.bulkWrite handles individual WriteErrors across batches--ordered:false PASSED (5.1s)
Test 6. MongoClient.bulkWrite handles individual WriteErrors across batches--ordered:true PASSED
0 commit comments