Tests: Fix bug in compareItems helper function.

This commit is contained in:
Jonathan Puckey 2011-05-20 22:03:46 +02:00
parent 8a1b1041cd
commit 6829233013

View file

@ -115,7 +115,7 @@ function compareItems(item, item2) {
if (item._matrix) {
equals(function() {
return item._matrix != item2._matrix;
});
}, true);
equals(item._matrix.toString(), item2._matrix.toString(),
'item._matrix.toString() == item2._matrix.toString()');
}