Skip to content

Commit 15ea86e

Browse files
committed
Fix console tests
1 parent 4c25068 commit 15ea86e

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

tests/test_console/test_rewrite_keys.py

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -61,14 +61,6 @@ def test_rewrite_key_declarations_no_files():
6161
"vdom('div', {'some_attr': 1}, child_1, child_2, key='test')",
6262
"vdom('div', {'some_attr': 1, 'key': 'test'}, child_1, child_2)",
6363
),
64-
(
65-
"html.div(dict(some_attr=1), child_1, child_2, key='test')",
66-
"html.div(dict(some_attr=1, key='test'), child_1, child_2)",
67-
),
68-
(
69-
"vdom('div', dict(some_attr=1), child_1, child_2, key='test')",
70-
"vdom('div', dict(some_attr=1, key='test'), child_1, child_2)",
71-
),
7264
# avoid unnecessary changes
7365
(
7466
"""
@@ -186,10 +178,6 @@ def func():
186178
""",
187179
),
188180
# no rewrites
189-
(
190-
"html.no_an_element(key='test')",
191-
None,
192-
),
193181
(
194182
"not_html.div(key='test')",
195183
None,

0 commit comments

Comments
 (0)