mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-01 02:38:43 -05:00
Fix Layer nesting tests.
This commit is contained in:
parent
a51957bf64
commit
eb44238f53
1 changed files with 3 additions and 3 deletions
|
@ -95,7 +95,7 @@ test('appendTop / appendBottom / nesting', function() {
|
|||
return project.layers.length;
|
||||
}, 2);
|
||||
equals(function() {
|
||||
return project.layers[0] == firstLayer
|
||||
&& project.layers[1] == secondLayer;
|
||||
return project.layers[0] == secondLayer
|
||||
&& project.layers[1] == firstLayer;
|
||||
}, true);
|
||||
);
|
||||
});
|
Loading…
Reference in a new issue