We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5976b40 commit c816acdCopy full SHA for c816acd
test/make-args.js
@@ -6,6 +6,8 @@ var vows = require('vows');
6
7
var assert = require('assert');
8
9
+var path = require('path');
10
+
11
var makeArgs = require('../lib/make-args.js').makeArgs;
12
13
var filter = require('../lib/make-args.js').filter;
@@ -112,7 +114,8 @@ suite.addBatch({
112
114
]
113
115
}),
116
'first arg should contain "cpplint/cpplint.py"': function (err, args) {
- assert.includes(args[0], 'cpplint/cpplint.py');
117
+ var cpplintpy = path.join('cpplint', 'cpplint.py');
118
+ assert.includes(args[0], cpplintpy);
119
},
120
'should pass the correct verbose value': function (err, args) {
121
assert.includes(args, '--verbose=1');
0 commit comments