Skip to content

Commit e4b900f

Browse files
committed
lint fixes
1 parent 45db8c0 commit e4b900f

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

test/integration/retryable-writes/retryable_writes.spec.prose.test.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ describe('Retryable Writes Spec Prose', () => {
254254
* }
255255
* });
256256
* ```
257-
*
257+
*
258258
* 3. Via the command monitoring CommandSucceededEvent, configure a fail point with error code `91` (ShutdownInProgress) and
259259
* the `NoWritesPerformed`, `RetryableError` and `SystemOverloadedError` labels:
260260
*
@@ -269,7 +269,7 @@ describe('Retryable Writes Spec Prose', () => {
269269
* }
270270
* });
271271
* ```
272-
*
272+
*
273273
* Drivers SHOULD configure the second fail point command only if the event is for the first error configured in step 2.
274274
*
275275
* 4. Attempt an insertOne operation on any record for any database and collection. For the resulting error, assert that the associated error code is 91.
@@ -531,10 +531,10 @@ describe('Retryable Writes Spec Prose', () => {
531531
serverCommandStub.callCount === 1
532532
? [MongoErrorLabel.RetryableError, MongoErrorLabel.SystemOverloadedError]
533533
: [
534-
MongoErrorLabel.RetryableError,
535-
MongoErrorLabel.SystemOverloadedError,
536-
MongoErrorLabel.NoWritesPerformed
537-
];
534+
MongoErrorLabel.RetryableError,
535+
MongoErrorLabel.SystemOverloadedError,
536+
MongoErrorLabel.NoWritesPerformed
537+
];
538538

539539
throw new MongoServerError({
540540
message: 'Server Error',

0 commit comments

Comments
 (0)