Skip to content

Commit ba0b1bd

Browse files
committed
Fixed formatting
1 parent 8c7f285 commit ba0b1bd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/data-connect/src/api/DataConnect.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ export function connectDataConnectEmulator(
238238
port?: number,
239239
sslEnabled = false
240240
): void {
241-
const hostWithPort = port ? `${host}:${port}` : host;
241+
const hostWithPort = port ? `${host}:${port}` : host;
242242
dc.enableEmulator({ host: hostWithPort, sslEnabled });
243243
}
244244

packages/data-connect/test/unit/dataconnect.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ describe('Data Connect Test', () => {
7070
expect(parsedHost.host).to.eq('localhost:8080');
7171
expect(parsedHost.sslEnabled).to.be.false;
7272
});
73-
it('should parse env var correctly with https://', async () => {
73+
it('should parse env var correctly with https://', async () => {
7474
const parsedHost = parseOptions('https://localhost');
7575
expect(parsedHost.host).to.eq('localhost');
7676
expect(parsedHost.sslEnabled).to.be.true;

0 commit comments

Comments
 (0)