Skip to content

Commit 35315a0

Browse files
committed
Run formatter
1 parent 2ed3edf commit 35315a0

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

packages/storage/test/unit/requests.test.ts

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -154,11 +154,14 @@ describe('Firebase Storage > Requests', () => {
154154
}
155155

156156
if (typeof Blob !== 'undefined' && body instanceof Blob) {
157-
return body.text().then(str => {
158-
assert.equal(str, expectedStr);
159-
}).catch(err => {
160-
return Promise.reject(err);
161-
})
157+
return body
158+
.text()
159+
.then(str => {
160+
assert.equal(str, expectedStr);
161+
})
162+
.catch(err => {
163+
return Promise.reject(err);
164+
});
162165
} else if (body instanceof Uint8Array) {
163166
const str = decodeUint8Array(body);
164167
assert.equal(str, expectedStr);

0 commit comments

Comments
 (0)