Skip to content

Commit

Permalink
fixed load in replsets/loader.js #869
Browse files Browse the repository at this point in the history
  • Loading branch information
leifwalsh committed Jan 30, 2014
1 parent fe28e66 commit f49c17c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion jstests/replsets/loader.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
// Test a bulk load

load("jstests/loader_helpers.js");
var filename;
if (TestData.testDir !== undefined) {
load(TestData.testDir + "../_loader_helpers.js");
} else {
load('jstests/_loader_helpers.js');
}

var replTest = new ReplSetTest({ name: 'bulkload', nodes: 3 });
var nodes = replTest.nodeList();
Expand Down

0 comments on commit f49c17c

Please sign in to comment.