From feb0ec445c3675a0f0b0b56702557febb50fa1f6 Mon Sep 17 00:00:00 2001 From: Jakub Pawlowicz Date: Sun, 15 Feb 2015 21:26:31 +0000 Subject: [PATCH] Tweaks source maps tests to allow Windows tests to pass. --- test/source-map-test.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/source-map-test.js b/test/source-map-test.js index 0652d134..9934b64d 100644 --- a/test/source-map-test.js +++ b/test/source-map-test.js @@ -890,9 +890,9 @@ vows.describe('source-map') }); assert.deepEqual(sources, [ - 'test/fixtures/source-maps/some.less', - 'test/fixtures/source-maps/nested/once.less', - 'test/fixtures/source-maps/styles.less' + path.join('test', 'fixtures', 'source-maps', 'some.less'), + path.join('test', 'fixtures', 'source-maps', 'nested', 'once.less'), + path.join('test', 'fixtures', 'source-maps', 'styles.less') ]); } } -- 2.34.1