From 65f5f8e8e29f332da7edadfd9225dad13c844c8e Mon Sep 17 00:00:00 2001 From: Blaine Bublitz Date: Sun, 14 Jul 2013 16:15:51 -0700 Subject: [PATCH] use absolute paths for test files Former-commit-id: 383d797273b168233c5a5653e71c0788e7d7343c --- test/underscore.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/underscore.html b/test/underscore.html index 028884d06..4480a3b03 100644 --- a/test/underscore.html +++ b/test/underscore.html @@ -135,11 +135,11 @@ ['lodash'], function(lodash) { init(lodash); require([ - pluginPath + '../vendor/underscore/test/collections.js', - pluginPath + '../vendor/underscore/test/arrays.js', - pluginPath + '../vendor/underscore/test/functions.js', - pluginPath + '../vendor/underscore/test/objects.js', - pluginPath + '../vendor/underscore/test/utility.js' + pluginPath + '/vendor/underscore/test/collections.js', + pluginPath + '/vendor/underscore/test/arrays.js', + pluginPath + '/vendor/underscore/test/functions.js', + pluginPath + '/vendor/underscore/test/objects.js', + pluginPath + '/vendor/underscore/test/utility.js' ], function() { QUnit.start(); });