Changes between Initial Version and Version 1 of Ticket #32556
- Timestamp:
- Mar 16, 2021, 8:34:22 AM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #32556 – Description
initial v1 1 1 If you try the following assertion: 2 ``` 2 {{{ 3 3 self.assertHTMLEqual('<input value>', '<input value="">') 4 ``` 4 }}} 5 5 6 6 You get a test failure and the following message: 7 ``` 7 {{{ 8 8 AssertionError: <input value> != <input value> 9 9 <input value> 10 10 11 ``` 11 }}} 12 12 13 13 I'm getting mixed signals here: either the test should pass or the error message should show the difference between the two strings.