mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-19 14:10:14 -05:00
Fix bug in Path#selected test.
This commit is contained in:
parent
2085e34d7f
commit
1ae2a4ba4b
1 changed files with 1 additions and 1 deletions
|
@ -173,7 +173,7 @@ test('After smoothing a path using #smooth(), the path should stay selected', fu
|
||||||
path.selected = true;
|
path.selected = true;
|
||||||
path.smooth();
|
path.smooth();
|
||||||
equals(function() {
|
equals(function() {
|
||||||
return path.fullySelected;
|
return path.selected;
|
||||||
}, true);
|
}, true);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue