Skip to content

Commit a05af8a

Browse files
committed
Fix test
1 parent 4fb2d81 commit a05af8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ test('custom event listeners and properties are ignored', function (t) {
4040
test('input values get copied', function (t) {
4141
t.plan(1)
4242
var el = yo`<input type="text" />`
43-
el.value = 'hi'
4443
var newEl = yo`<input type="text" />`
44+
newEl.value = 'hi'
4545
yo.update(el, newEl)
4646
t.equal(el.value, 'hi')
4747
})

0 commit comments

Comments
 (0)