Skip to content

Commit 0dae14e

Browse files
Update test comments
1 parent d7a7f0a commit 0dae14e

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

packages/firestore/test/unit/specs/write_spec.test.ts

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,7 @@ describeSpec('Writes:', [], () => {
497497
);
498498
});
499499

500-
specTest('Held writes are not re-sent.', [], () => {
500+
specTest('Writes are not re-sent.', [], () => {
501501
const query = Query.atPath(path('collection'));
502502
const docALocal = doc(
503503
'collection/a',
@@ -545,7 +545,7 @@ describeSpec('Writes:', [], () => {
545545
});
546546

547547
specTest(
548-
'Held writes are not re-sent after disable/enable network.',
548+
'Writes are not re-sent after disable/enable network.',
549549
[],
550550
() => {
551551
const query = Query.atPath(path('collection'));
@@ -598,10 +598,9 @@ describeSpec('Writes:', [], () => {
598598
);
599599

600600
specTest(
601-
'Held writes are released when there are no queries left.',
601+
'Writes are released when there are no queries left',
602602
['eager-gc'],
603-
'This test expects a new target id for a new listen, but without eager gc, the same target ' +
604-
'id is reused',
603+
'This test verifies that committed mutations are eligble for garbage collection on target removal',
605604
() => {
606605
const query = Query.atPath(path('collection'));
607606
const docALocal = doc(
@@ -995,7 +994,7 @@ describeSpec('Writes:', [], () => {
995994
}
996995
);
997996

998-
specTest('Held write is released by primary client', ['multi-client'], () => {
997+
specTest('Writes are released by primary client', ['multi-client'], () => {
999998
const query = Query.atPath(path('collection'));
1000999
const docALocal = doc(
10011000
'collection/a',

0 commit comments

Comments
 (0)