Fix bug in Path#selected test.

This commit is contained in:
Jonathan Puckey 2011-06-20 16:59:51 +02:00
parent 2085e34d7f
commit 1ae2a4ba4b

View file

@ -173,7 +173,7 @@ test('After smoothing a path using #smooth(), the path should stay selected', fu
path.selected = true;
path.smooth();
equals(function() {
return path.fullySelected;
return path.selected;
}, true);
});