Skip to content

Commit

Permalink
Fix console tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Archmonger committed Jan 26, 2025
1 parent 4c25068 commit 15ea86e
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions tests/test_console/test_rewrite_keys.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,6 @@ def test_rewrite_key_declarations_no_files():
"vdom('div', {'some_attr': 1}, child_1, child_2, key='test')",
"vdom('div', {'some_attr': 1, 'key': 'test'}, child_1, child_2)",
),
(
"html.div(dict(some_attr=1), child_1, child_2, key='test')",
"html.div(dict(some_attr=1, key='test'), child_1, child_2)",
),
(
"vdom('div', dict(some_attr=1), child_1, child_2, key='test')",
"vdom('div', dict(some_attr=1, key='test'), child_1, child_2)",
),
# avoid unnecessary changes
(
"""
Expand Down Expand Up @@ -186,10 +178,6 @@ def func():
""",
),
# no rewrites
(
"html.no_an_element(key='test')",
None,
),
(
"not_html.div(key='test')",
None,
Expand Down

0 comments on commit 15ea86e

Please sign in to comment.