Skip to content

Commit

Permalink
test: fix on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
indutny committed Jun 18, 2016
1 parent 3766e24 commit aafc6f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/gyppies/shared_lib/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ const assert = require('assert');

module.exports = function(out) {
assert(fs.existsSync(path.join(out, 'libshared.so')) ||
fs.existsSync(path.join(out, 'libshared.dll')) ||
fs.existsSync(path.join(out, 'shared.dll')) ||
fs.existsSync(path.join(out, 'libshared.dylib')));
};
2 changes: 1 addition & 1 deletion test/gyppies/static_lib/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ const assert = require('assert');

module.exports = function(out) {
assert(fs.existsSync(path.join(out, 'libstatic.a')) ||
fs.existsSync(path.join(out, 'libstatic.lib')));
fs.existsSync(path.join(out, 'static.lib')));
};

0 comments on commit aafc6f7

Please sign in to comment.