Skip to content

Commit

Permalink
fix: package versions
Browse files Browse the repository at this point in the history
  • Loading branch information
renanccastro committed May 17, 2024
1 parent 6b685a7 commit 3610579
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/hijack/redis_oplog.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { sleep } from '../../lib/utils';
import { TestData, TestDataRedis, TestDataRedisNoRaceProtection } from '../_helpers/globals';
import {GetMeteorClient, SubscribeAndWait, RegisterPublication, FindMetricsForPub, addTestWithRoundedTime, getMeteorClient, registerMethod, registerPublication, subscribeAndWait } from '../_helpers/helpers';
import { FindMetricsForPub, GetMeteorClient, SubscribeAndWait, addTestWithRoundedTime, getMeteorClient, registerMethod, registerPublication, subscribeAndWait } from '../_helpers/helpers';

/**
* We only track the observers coming from subscriptions (which have `ownerInfo`)
Expand Down Expand Up @@ -198,7 +198,7 @@ addTestWithRoundedTime('Database - Redis Oplog - Without protect against race co
});

addTestWithRoundedTime('Database - Redis Oplog - Removed', async function (test) {
const pub = RegisterPublication(() => TestData.find({}));
const pub = registerPublication(() => TestData.find({}));

await TestData.removeAsync({});

Expand Down Expand Up @@ -236,7 +236,7 @@ addTestWithRoundedTime('Database - Redis Oplog - Removed', async function (test)
});

addTestWithRoundedTime('Database - Redis Oplog - Changed', async function (test) {
const pub = RegisterPublication(() => TestData.find({}));
const pub = registerPublication(() => TestData.find({}));

await TestData.removeAsync({});

Expand Down

0 comments on commit 3610579

Please sign in to comment.