Skip to content

Commit 96e9bd9

Browse files
committed
Remove parenthetical number from test name
1 parent 7fc1507 commit 96e9bd9

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

driver-sync/src/test/functional/com/mongodb/client/unified/UnifiedTest.java

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -185,11 +185,7 @@ protected static Collection<Arguments> getTestData(final String directory, final
185185
}
186186

187187
for (int attempt = 1; attempt <= attempts; attempt++) {
188-
String testName = !retry
189-
? MessageFormat.format("{0}: {1}", fileDescription, testDescription)
190-
: MessageFormat.format(
191-
"{0}: {1} ({2} of {3})",
192-
fileDescription, testDescription, attempt, attempts);
188+
String testName = MessageFormat.format("{0}: {1}", fileDescription, testDescription);
193189
data.add(Arguments.of(
194190
testName,
195191
fileDescription,

0 commit comments

Comments
 (0)