Skip to content

Commit

Permalink
Remove duplicate unit tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
lehni committed Feb 10, 2016
1 parent 00d2e2a commit ed43477
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 184 deletions.
2 changes: 1 addition & 1 deletion test/tests/Path.js
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ test('path.flatten(maxDistance)', function() {
}, false, 'The points of the last and first segments should not be the same.');

equals(function() {
return path.lastSegment.point.toString() != path.segments[path.segments.length - 2].point.toString();
return path.lastSegment.point.toString() != path.lastSegment.previous.point.toString();
}, true, 'The points of the last and before last segments should not be so close, that calling toString on them returns the same string value.');
});

Expand Down
182 changes: 0 additions & 182 deletions test/tests/Path_Curves.js

This file was deleted.

1 change: 0 additions & 1 deletion test/tests/load.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@

/*#*/ include('Path.js');
/*#*/ include('Path_Constructors.js');
/*#*/ include('Path_Curves.js');
/*#*/ include('Path_Intersections.js');
/*#*/ include('Path_Boolean.js');
/*#*/ include('PathItem_Contains.js');
Expand Down

0 comments on commit ed43477

Please sign in to comment.