Skip to content

Commit bd4480e

Browse files
committed
Replace deprecated .size() with .length in test.js
1 parent fd872c1 commit bd4480e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ describe('form', function() {
408408
dataType: 'xml',
409409
success: function(responseXML, statusText) { // post-submit callback
410410
assert.ok(typeof responseXML == 'object', 'data type xml');
411-
assert.ok($('test', responseXML).size() == 3, 'xml data query');
411+
assert.ok($('test', responseXML).length == 3, 'xml data query');
412412
// start();
413413
}
414414
};

0 commit comments

Comments
 (0)