diff options
author | Scott González <scott.gonzalez@gmail.com> | 2012-06-18 13:38:16 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-06-18 13:38:16 -0400 |
commit | 156f07b48a9476250f4fdbd8816080cf1a9f58c5 (patch) | |
tree | 5c57bd4c76f433ac99a16d93bdf5db42e5fb8bc5 /tests/unit/menu/menu_options.js | |
parent | f92f8bb56bf9e01ccc5d0c84e0f089c3660283d8 (diff) | |
download | jquery-ui-156f07b48a9476250f4fdbd8816080cf1a9f58c5.tar.gz jquery-ui-156f07b48a9476250f4fdbd8816080cf1a9f58c5.zip |
Menu tests: Saner output for log helper.
Diffstat (limited to 'tests/unit/menu/menu_options.js')
-rw-r--r-- | tests/unit/menu/menu_options.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/menu/menu_options.js b/tests/unit/menu/menu_options.js index df2ae4380..a25b59a2c 100644 --- a/tests/unit/menu/menu_options.js +++ b/tests/unit/menu/menu_options.js @@ -22,7 +22,7 @@ test( "{ disabled: true }", function() { log( "click", true ); click( menu, "1" ); log( "afterclick" ); - equal( logOutput(), "afterclick,click,", "Click order not valid." ); + equal( logOutput(), "click,afterclick", "Click order not valid." ); }); test( "{ disabled: false }", function() { @@ -37,7 +37,7 @@ test( "{ disabled: false }", function() { log( "click", true ); click( menu, "1" ); log( "afterclick" ); - equal( logOutput(), "afterclick,1,click,", "Click order not valid." ); + equal( logOutput(), "click,1,afterclick", "Click order not valid." ); }); test( "{ role: 'menu' } ", function () { |