Skip to content

Commit

Permalink
Fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
KoenLav committed Feb 26, 2024
1 parent 71bd6ce commit 19a03fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions testing/collection_hooks.server.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { assert } from 'chai';
import { _ } from 'meteor/underscore';
import { RedisOplog } from 'meteor/cultofcoders:redis-oplog';
import { SubscriptionInitialization } from 'meteor/cultofcoders:redis-oplog';
import helperGenerator from './lib/helpers';

describe('It should work with collection:hooks', function () {
Expand Down Expand Up @@ -59,7 +59,7 @@ describe('It should work with collection:hooks', function () {
let subscriptionInitialized = true;

Collection.before.find(function () {
subscriptionInitialized = RedisOplog.SubscriptionInitialization.get();
subscriptionInitialized = SubscriptionInitialization.get();
});

const handle = Collection.find({
Expand Down

0 comments on commit 19a03fa

Please sign in to comment.