aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/menu/menu_options.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/menu/menu_options.js')
-rw-r--r--tests/unit/menu/menu_options.js4
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 () {