aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/progressbar
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2015-03-23 18:42:23 -0400
committerScott González <scott.gonzalez@gmail.com>2015-03-25 15:55:53 -0400
commit899d90709a141ce22fedab2cfdf6044d9928f831 (patch)
tree3ffc9ed66db142e5661586fa42083bb4bcb7cadd /tests/unit/progressbar
parente109e768190089744804d084e9a26f010dd63a37 (diff)
downloadjquery-ui-899d90709a141ce22fedab2cfdf6044d9928f831.tar.gz
jquery-ui-899d90709a141ce22fedab2cfdf6044d9928f831.zip
Tests: Handle jQuery git returning `null` for empty attributes
jQuery now returns `null` for empty attributes instead of `undefined`. Closes gh-1516
Diffstat (limited to 'tests/unit/progressbar')
-rw-r--r--tests/unit/progressbar/progressbar_core.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/progressbar/progressbar_core.js b/tests/unit/progressbar/progressbar_core.js
index 686e93b43..60ff31411 100644
--- a/tests/unit/progressbar/progressbar_core.js
+++ b/tests/unit/progressbar/progressbar_core.js
@@ -55,7 +55,7 @@ test( "accessibility", function() {
element.progressbar( "option", "value", false );
equal( element.attr( "aria-valuemin" ), 0, "aria-valuemin" );
equal( element.attr( "aria-valuemax" ), 150, "aria-valuemax" );
- strictEqual( element.attr( "aria-valuenow" ), undefined, "aria-valuenow" );
+ equal( element.attr( "aria-valuenow" ), null, "aria-valuenow" );
});
}( jQuery ) );