Skip to content

Commit 9981c66

Browse files
committed
update tests
1 parent 52a42f1 commit 9981c66

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/render.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ describe('render', () => {
116116

117117
it('should serialize defaultChecked prop to the checked attribute', () => {
118118
let rendered = render(<input type="checkbox" defaultChecked />),
119-
expected = `<input type="checkbox" checked />`;
119+
expected = `<input type="checkbox" checked/>`;
120120

121121
expect(rendered).to.equal(expected);
122122
});
@@ -240,7 +240,7 @@ describe('render', () => {
240240
<wbr />
241241
</div>
242242
),
243-
expected = `<div><input type="text" /><wbr /></div>`;
243+
expected = `<div><input type="text"/><wbr/></div>`;
244244

245245
expect(rendered).to.equal(expected);
246246
});

0 commit comments

Comments
 (0)