Fix forgoten compare in test.

This commit is contained in:
Jürg Lehni 2011-05-05 13:37:57 +01:00
parent b50b0f9e5a
commit 4acd02f6b1

View file

@ -61,8 +61,8 @@ test('getting group styles', function() {
group.appendTop(secondPath);
// the group now contains two paths with different fillColors and therefore
// should return null:
equals(group.fillColor, null, 'group.fillColor');
// should return undefined:
equals(group.fillColor, undefined, 'group.fillColor');
//If we remove the first path, it should now return 'black':
group.children[0].remove();