Subject: | Random failure of smart_tag_wrapper.t on 5.17.x ( might be hash-order dependent ) |
Randomly it gets
<form id="edit_prefs" action="edit.html">
instead of
<form action="edit.html" id="edit_prefs">
And this sounds like a likely 5.17.x hash-order randomization based failure ( ie: erroneously depending on an implicit hash order on pre 5.17 perls )
I skimmed the code, but couldn't see anything to the effect of "By design" or work out exactly where its going wrong, so it might not hash randomization based.
not ok 4 - got correct output for simple
Show quoted text
# Failed test 'got correct output for simple'
# at t/smart_tag_wrapper.t line 87.
# got: '
#
# <form id="edit_prefs" action="edit.html">
# <label>Time Zone</label>
# <input type="text" name="tz" />
# <input type="submit" value="Save" />
# </form>'
# expected: '
#
# <form action="edit.html" id="edit_prefs">
# <label>Time Zone</label>
# <input type="text" name="tz" />
# <input type="submit" value="Save" />
# </form>'
# Looks like you failed 1 test of 4.
# at t/smart_tag_wrapper.t line 87.
# got: '
#
# <form id="edit_prefs" action="edit.html">
# <label>Time Zone</label>
# <input type="text" name="tz" />
# <input type="submit" value="Save" />
# </form>'
# expected: '
#
# <form action="edit.html" id="edit_prefs">
# <label>Time Zone</label>
# <input type="text" name="tz" />
# <input type="submit" value="Save" />
# </form>'
# Looks like you failed 1 test of 4.