Skip to content

Commit c972e4c

Browse files
committed
Updating unit test to contain proper error string
1 parent 64fa5fb commit c972e4c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/firestore/test/unit/api/database.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,9 @@ describe('Settings', () => {
178178
experimentalForceLongPolling: true,
179179
experimentalAutoDetectLongPolling: true
180180
})
181-
).to.throw(`can not be used together.`);
181+
).to.throw(
182+
`experimentalForceLongPolling and experimentalAutoDetectLongPolling cannot be used together.`
183+
);
182184
});
183185

184186
it('can merge settings', () => {

0 commit comments

Comments
 (0)