You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
test: improve failure message for tree construction
where before we saw:
TestHtml5TreeConstructionWebkit02#test_31 [/home/flavorjones/code/oss/nokogiri/test/html5/test_tree_construction.rb:35]
Minitest::Assertion: Element <select><option><hr></option></select> has wrong number of children ["option"] in <table><tr><td><select><option><hr>.
Expected: 2
Actual: 1
now we'll see:
TestHtml5TreeConstructionWebkit02#test_31 [/home/flavorjones/code/oss/nokogiri/test/html5/test_tree_construction.rb:35]
Minitest::Assertion: Element <select> has wrong number of children ["option"]
Input: <table><tr><td><select><option><hr>
Expected: | <html>
| <head>
| <body>
| <table>
| <tbody>
| <tr>
| <td>
| <select>
| <option>
| <hr>
Parsed: <select><option><hr></option></select>.
Expected: 2
Actual: 1
0 commit comments