Index: test/data/input/text_tostring_test.html |
diff --git a/test/data/input/text_tostring_test.html b/test/data/input/text_tostring_test.html |
index 9bc95ad240ec8a0022e33256a2dfad49a8d6b1af..f51dcffe711cefbe317fc86e60b405bd501632f8 100644 |
--- a/test/data/input/text_tostring_test.html |
+++ b/test/data/input/text_tostring_test.html |
@@ -27,7 +27,7 @@ BSD-style license that can be found in the LICENSE file. |
main() { |
window.setTimeout(() { |
- expect(actual.innerHTML, 'The quick brown [initial, list state] over ' |
+ expect(actual.innerHtml, 'The quick brown [initial, list state] over ' |
'the {initial: map, state: !}.'); |
list[0] = 'fox'; |
@@ -37,7 +37,7 @@ BSD-style license that can be found in the LICENSE file. |
dispatch(); |
- expect(actual.innerHTML, expected.innerHTML); |
+ expect(actual.innerHtml, expected.innerHtml); |
window.setTimeout(() => window.postMessage('done', '*'), 0); |
}, 0); |