Changes between Version 1 and Version 2 of Ticket #165, comment 1


Ignore:
Timestamp:
Aug 16, 2017, 9:24:40 AM (7 years ago)
Author:
patrik.svestka@…

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #165, comment 1

    v1 v2  
    1 In other words these two tests should be the same but are not! (note: these tests are already using the patch from #162)
     1In other words these two tests should be the same but are not!
    22
    33This is the successful test:
     
    1818    textViewInteractor type: #BackSpace.
    1919    textView lineEndCRLF: false.
    20     self assert:textView contents asString = 'This text is to   continue'.
     20    self assert:textView contents asString = ('This text is to   continue', Character cr).
    2121}}}
    2222
    23 On the other hand if you do it this way:
     23On the other hand if you do it this way the test fails!!:
    2424{{{
    2525test_03b
     
    3636
    3737    textViewInteractor type: #BackSpace.
    38     textView lineEndCRLF: false.
    39     self assert:textView contents asString = 'This text is to   continue'.
     38    self assert:textView contents asString = ('This text is to   continue', Character cr).
    4039}}}
    41 The test fails!!