Skip to content

Commit

Permalink
fix: correct legacy require paths
Browse files Browse the repository at this point in the history
  • Loading branch information
mbroadst committed Jun 3, 2020
1 parent ebeae56 commit f96a97f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/operations/find.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ const OperationBase = require('./operation').OperationBase;
const Aspect = require('./operation').Aspect;
const defineAspects = require('./operation').defineAspects;
const ReadPreference = require('../read_preference');
const maxWireVersion = require('../core/utils').maxWireVersion;
const MongoError = require('../core/error').MongoError;
const maxWireVersion = require('../utils').maxWireVersion;
const MongoError = require('../error').MongoError;

class FindOperation extends OperationBase {
constructor(collection, ns, command, options) {
Expand Down

0 comments on commit f96a97f

Please sign in to comment.