Skip to content

Commit af06fdc

Browse files
committed
formatting
1 parent 42ea7fc commit af06fdc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/storage/test/browser/connection.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ describe('Connections', () => {
88
const fakeXHR = useFakeXMLHttpRequest();
99
const connection = new XhrConnection();
1010
const sendPromise = connection.send('testurl', 'GET');
11-
// simulate an network error
11+
// simulate a network error
1212
((connection as any).xhr_ as SinonFakeXMLHttpRequest).error();
1313
await sendPromise;
1414
expect(connection.getErrorCode()).to.equal(ErrorCode.NETWORK_ERROR);
1515
fakeXHR.restore();
1616
});
17-
});
17+
});

0 commit comments

Comments
 (0)