From 721f97f54e7eb757f468d7a78e6eba3d43a4ca43 Mon Sep 17 00:00:00 2001 From: Todd Wolfson Date: Sat, 3 Nov 2012 22:20:24 -0700 Subject: [PATCH] Wrong map path fixed --- test/jsmin-sourcemap.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/jsmin-sourcemap.test.js b/test/jsmin-sourcemap.test.js index 04d38b5..08d09bf 100644 --- a/test/jsmin-sourcemap.test.js +++ b/test/jsmin-sourcemap.test.js @@ -38,7 +38,7 @@ exports['jsmin-sourcemap'] = { // which points to the map file test.ok(compactMapDeclarativeExists, ' points to the proper map location for the compact file'); // and the map file points back to the minified code - test.ok(actualCompactMap.indexOf('actual/compact.min.js') > -1, ' points back to minified compact file'); + test.ok(actualCompactMap.indexOf('compact.min.js') > -1, ' points back to minified compact file'); // as well as a sourcemap test.ok(actualCompactMap, ' generates a source map for a compact file');