Skip to content

Commit

Permalink
[nodejs] Fixing paths in tests to make them cross-platform
Browse files Browse the repository at this point in the history
  • Loading branch information
barancev committed Feb 1, 2019
1 parent ad7688b commit d1ca0f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions javascript/node/selenium-webdriver/test/io/io_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -351,8 +351,8 @@ describe('io', function() {
seen,
[{path: 'file1', dir: false},
{path: 'sub', dir: true},
{path: 'sub/folder', dir: true},
{path: 'sub/folder/file2', dir: false}]);
{path: path.join('sub', 'folder'), dir: true},
{path: path.join('sub', 'folder', 'file2'), dir: false}]);
});
});
});
Expand Down

0 comments on commit d1ca0f7

Please sign in to comment.