diff options
Diffstat (limited to 'tests/unit/tabs/tabs.html')
-rw-r--r-- | tests/unit/tabs/tabs.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/unit/tabs/tabs.html b/tests/unit/tabs/tabs.html index f2a672b2e..fc494e013 100644 --- a/tests/unit/tabs/tabs.html +++ b/tests/unit/tabs/tabs.html @@ -49,7 +49,7 @@ } return -1; // mixed state - invalid }).get(); - same( actual, expected ); + deepEqual( actual, expected ); } function tabs_disabled( tabs, state ) { @@ -83,8 +83,8 @@ } return -1; // mixed state - invalid }).get(); - same( tabs.tabs( "option", "disabled" ), state ); - same( actual, expected ); + deepEqual( tabs.tabs( "option", "disabled" ), state ); + deepEqual( actual, expected ); } </script> <script src="../swarminject.js"></script> |