Swap expectations

This commit is contained in:
Tim Schaub
2016-08-06 11:08:35 -06:00
parent 0c9abf5257
commit c398f1cacb

View File

@@ -57,7 +57,7 @@ describe('each file', () => {
ext = '.js';
}
const mapped = provide.split('.').map(part => part.toLowerCase()).join(path.sep) + ext;
assert.equal(mapped, file, 'expected provide to be like the path: ' + file);
assert.equal(file, mapped, 'expected path to be like the provide: ' + file);
}
});