Skip to content

Commit

Permalink
test: removed redundant modules argument (#599)
Browse files Browse the repository at this point in the history
  • Loading branch information
no1melman authored and michael-ciniawsky committed Sep 12, 2017
1 parent c45fa66 commit 05c36db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/helpers.js
Expand Up @@ -73,13 +73,13 @@ exports.test = function test(name, input, result, query, modules) {
});
};

exports.testRaw = function testRaw(name, input, result, query, modules) {
exports.testRaw = function testRaw(name, input, result, query) {
it(name, function(done) {
runLoader(cssLoader, input, undefined, !query || typeof query === "string" ? {
query: query
} : query, function(err, output) {
if(err) return done(err);
assertRaw(output, result, modules);
assertRaw(output, result);
done();
});
});
Expand Down

0 comments on commit 05c36db

Please sign in to comment.