Skip to content

Commit 6b53427

Browse files
committed
Remove parenthetical number from test name
1 parent aabe9c5 commit 6b53427

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
@@ -184,11 +184,7 @@ protected static Collection<Arguments> getTestData(final String directory, final
184184
}
185185

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

0 commit comments

Comments
 (0)