Fix Layer nesting tests.

This commit is contained in:
Jürg Lehni 2011-05-21 14:28:20 +01:00
parent a51957bf64
commit eb44238f53

View file

@ -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);
);
});