Skip to content

Commit 1aace02

Browse files
committed
Test fix
1 parent 5a3cfa0 commit 1aace02

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/firestore/test/integration/api/validation.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,8 +194,7 @@ apiDescribe('Validation:', (persistence: boolean) => {
194194
'disallows calling useEmulator after use',
195195
async db => {
196196
const errorMsg =
197-
'Firestore has already been started and its settings can no longer be changed. ' +
198-
'You can only modify settings before calling any other methods on a Firestore object.';
197+
'Firestore has already been started and its settings can no longer be changed.';
199198

200199
await db.doc('foo/bar').set({});
201200
expect(() => db.useEmulator('localhost', 9000)).to.throw(errorMsg);

0 commit comments

Comments
 (0)