From d858296a8a3e98e7400b197265aec529cebaca9f Mon Sep 17 00:00:00 2001 From: LasaleFamine Date: Thu, 31 Aug 2017 22:27:57 +0200 Subject: [PATCH] Fixed full path test --- test/units/full-path.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/units/full-path.test.js b/test/units/full-path.test.js index 8dbe4e7..09a0483 100644 --- a/test/units/full-path.test.js +++ b/test/units/full-path.test.js @@ -4,7 +4,7 @@ import fullPath from '../../src/lib/full-path'; test('fullPath()', t => { t.is( - fullPath('test.postcss', '/my/dir/file.html'), + fullPath('test.postcss', 'my/dir/file.html'), join('my', 'dir', 'test.postcss'), 'should return the full path of a source based on the path of the resource file' );