Index: trunk/parsers/wikidom/tests/hype/es.DocumentModel.test.js |
— | — | @@ -400,10 +400,16 @@ |
401 | 401 | ); |
402 | 402 | |
403 | 403 | deepEqual( |
404 | | - documentModel.prepareInsertion( 5, [ { 'type': 'paragraph' }, 'd', 'e', 'f', { 'type': '/paragraph' } ] ), |
| 404 | + documentModel.prepareInsertion( |
| 405 | + 5, |
| 406 | + [{ 'type': 'paragraph' }, 'd', 'e', 'f', { 'type': '/paragraph' }] |
| 407 | + ), |
405 | 408 | [ |
406 | 409 | { 'type': 'retain', 'length': 5 }, |
407 | | - { 'type': 'insert', 'data': [ { 'type': 'paragraph' }, 'd', 'e', 'f', { 'type': '/paragraph' } ] }, |
| 410 | + { |
| 411 | + 'type': 'insert', |
| 412 | + 'data': [{ 'type': 'paragraph' }, 'd', 'e', 'f', { 'type': '/paragraph' }] |
| 413 | + }, |
408 | 414 | { 'type': 'retain', 'length': 23 } |
409 | 415 | ], |
410 | 416 | 'prepareInsertion inserts a paragraph between two structural elements' |