Changes between Initial Version and Version 1 of Ticket #32556


Ignore:
Timestamp:
Mar 16, 2021, 8:34:22 AM (3 years ago)
Author:
Baptiste Mispelon
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #32556 – Description

    initial v1  
    11If you try the following assertion:
    2 ```
     2{{{
    33self.assertHTMLEqual('<input value>', '<input value="">')
    4 ```
     4}}}
    55
    66You get a test failure and the following message:
    7 ```
     7{{{
    88AssertionError: <input value> != <input value>
    99  <input value>
    1010
    11 ```
     11}}}
    1212
    1313I'm getting mixed signals here: either the test should pass or the error message should show the difference between the two strings.
Back to Top