Add FIXME comment for a failing test and fix a typo in its description

This commit is contained in:
Roan Kattouw 2011-11-15 10:15:52 +00:00
parent a7c1524fe0
commit 8563e7e451

View file

@ -376,6 +376,7 @@ test( 'es.DocumentModel.prepareRemoval', 5, function() {
);
// Test 4
// FIXME this test fails
deepEqual(
documentModel.prepareRemoval( new es.Range( 3, 24 ) ).getOperations(),
[
@ -407,7 +408,7 @@ test( 'es.DocumentModel.prepareRemoval', 5, function() {
},
{ 'type': 'retain', 'length': 13 }
],
'prepareRemoval strips and drops correctly when working accross structural nodes'
'prepareRemoval strips and drops correctly when working across structural nodes'
);
} );