Skip to content

Commit 6f931a0

Browse files
committed
Fix test
1 parent ac5c75c commit 6f931a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parse.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ describe('parse()', function () {
1919
describe('null', function () {
2020
it('should parse a <null> node into a null value', function () {
2121
var parsed = parseFixture('<null/>');
22-
assert.strictEqual(parsed, undefined);
22+
assert.strictEqual(parsed, null);
2323
});
2424
});
2525

0 commit comments

Comments
 (0)