Skip to content

Commit 8328829

Browse files
committed
[tests] Consistent 'reuse'
1 parent ea05bac commit 8328829

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

test/unit/indexes.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1894,7 +1894,7 @@ describe('Miscellaneous', () => {
18941894
expect(indexes1).not.toBe(indexes2);
18951895
});
18961896

1897-
test('reuses indexes against existing store', () => {
1897+
test('re-uses indexes against existing store', () => {
18981898
const store = createStore();
18991899
const indexes1 = createIndexes(store);
19001900
const indexes2 = createIndexes(store);

test/unit/metrics.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -648,7 +648,7 @@ describe('Miscellaneous', () => {
648648
expect(metrics1).not.toBe(metrics2);
649649
});
650650

651-
test('reuses metrics against existing store', () => {
651+
test('re-uses metrics against existing store', () => {
652652
const store = createStore();
653653
const metrics1 = createMetrics(store);
654654
const metrics2 = createMetrics(store);

test/unit/queries.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4431,7 +4431,7 @@ describe('Miscellaneous', () => {
44314431
expect(queries1).not.toBe(queries2);
44324432
});
44334433

4434-
test('reuses queries against existing store', () => {
4434+
test('re-uses queries against existing store', () => {
44354435
const store = createStore();
44364436
const queries1 = createQueries(store);
44374437
const queries2 = createQueries(store);

test/unit/relationships.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -797,7 +797,7 @@ describe('Miscellaneous', () => {
797797
expect(relationships1).not.toBe(relationships2);
798798
});
799799

800-
test('reuses relationships against existing store', () => {
800+
test('re-uses relationships against existing store', () => {
801801
const store = createStore();
802802
const relationships1 = createRelationships(store);
803803
const relationships2 = createRelationships(store);

test/unit/store-advanced.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@ describe('Miscellaneous', () => {
442442
expectNoChanges(listener);
443443
});
444444

445-
test('increments or reuses listenerId', () => {
445+
test('increments or re-uses listenerId', () => {
446446
expect(listener.listenToRow('/t1/r1a', 't1', 'r1')).toEqual('0');
447447
store.setRow('t1', 'r1', {c1: 1});
448448
expect(listener.listenToRow('/t1/r1b', 't1', 'r1')).toEqual('1');

0 commit comments

Comments
 (0)