Hi! I fixed some code for you! #33

Merged
node-migrator-bot merged 1 commit from clean into master 2012-11-09 02:06:54 -08:00
2 changed files with 4 additions and 4 deletions
Showing only changes of commit a0749b36ac - Show all commits

View file

@ -7,11 +7,11 @@ module.exports = testCase({
test_mkdirSyncRecursive: function(test) {
var dir = __dirname + '/_tmp/foo/bar';
test.equals(path.existsSync(dir), false, 'Dir shouldn\'t exist - clean it up manually?');
test.equals(fs.existsSync(dir), false, 'Dir shouldn\'t exist - clean it up manually?');
wrench.mkdirSyncRecursive(dir, 0777);
test.equals(path.existsSync(dir), true, 'Dir should exist now');
test.equals(fs.existsSync(dir), true, 'Dir should exist now');
// clean up
while (dir != __dirname) {

View file

@ -23,7 +23,7 @@ module.exports = testCase({
test_readdirSyncRecursive: function(test) {
var dir = path.join(__dirname, 'readdir');
test.ok(path.existsSync(dir), 'Folders should exist');
test.ok(fs.existsSync(dir), 'Folders should exist');
var files = wrench.readdirSyncRecursive(dir);
@ -33,7 +33,7 @@ module.exports = testCase({
test_readdirRecursive: function(test) {
var dir = path.join(__dirname, 'readdir');
test.ok(path.existsSync(dir), 'Folders should exist');
test.ok(fs.existsSync(dir), 'Folders should exist');
var allFiles = [];