Skip to content

Commit b424e58

Browse files
committed
Fixed formattign
1 parent da5b7bf commit b424e58

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

packages/firestore/src/remote/rest_connection.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,13 @@ export abstract class RestConnection implements Connection {
9898
};
9999
this.modifyHeadersForRequest(headers, authToken, appCheckToken);
100100

101-
return this.performRPCRequest<Req, Resp>(rpcName, url, headers, req, this.databaseInfo.isUsingEmulator).then(
101+
return this.performRPCRequest<Req, Resp>(
102+
rpcName,
103+
url,
104+
headers,
105+
req,
106+
this.databaseInfo.isUsingEmulator
107+
).then(
102108
response => {
103109
logDebug(LOG_TAG, `Received RPC '${rpcName}' ${streamId}: `, response);
104110
return response;

packages/firestore/test/integration/util/internal_helpers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export function getDefaultDatabaseInfo(): DatabaseInfo {
6262
DEFAULT_SETTINGS.experimentalLongPollingOptions ?? {}
6363
),
6464
/*use FetchStreams= */ false,
65-
/*isUsingEmulator=*/false
65+
/*isUsingEmulator=*/ false
6666
);
6767
}
6868

0 commit comments

Comments
 (0)