diff --git a/src/load.js b/src/load.js
index 0ae20540..d5aa27e1 100644
--- a/src/load.js
+++ b/src/load.js
@@ -99,12 +99,13 @@ if (window.tests) {
 		'test/tests/Group.js',
 		'test/tests/Segment.js',
 		'test/tests/Path.js',
+		'test/tests/PathStyle.js',
 		'test/tests/Path_Shapes.js',
 		'test/tests/Path_Drawing_Commands.js',
 		'test/tests/Path_Curves.js',
 		'test/tests/Path_Bounds.js',
 		'test/tests/Path_Length.js',
-		'test/tests/PathStyle.js',
+		'test/tests/CompoundPath.js',
 		'test/tests/PlacedSymbol.js'
 	);
 }
diff --git a/test/tests/CompoundPath.js b/test/tests/CompoundPath.js
index 8d6c054d..70295355 100644
--- a/test/tests/CompoundPath.js
+++ b/test/tests/CompoundPath.js
@@ -1,7 +1,6 @@
 module('Compound Path');
 
 test('moveTo / lineTo', function() {
-	var doc = new Document(canvas);
 	var path = new CompoundPath();
 
 	var lists = [
@@ -20,5 +19,5 @@ test('moveTo / lineTo', function() {
 	
 	equals(function() {
 		return path.children.length;
-	}, 2));
-});
\ No newline at end of file
+	}, 2);
+});