Skip to content

Commit

Permalink
Simplify test
Browse files Browse the repository at this point in the history
  • Loading branch information
odelalleau committed May 3, 2021
1 parent 65d2847 commit 4f89e38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_overrides_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -1009,8 +1009,8 @@ def test_override_get_value_element_method(
param("key={a:10,b:[1,2,3]}", {"a": 10, "b": [1, 2, 3]}, id="dict"),
param("key={123id: 0}", {"123id": 0}, id="dict_key_int_plus_id"),
param(
"key={a%s: 0}" % UNQUOTED_SPECIAL,
{f"a{UNQUOTED_SPECIAL}": 0},
"key={%s: 0}" % UNQUOTED_SPECIAL,
{UNQUOTED_SPECIAL: 0},
id="dict_key_noquote",
),
param("key={w s: 0}", {"w s": 0}, id="dict_key_ws"),
Expand Down

0 comments on commit 4f89e38

Please sign in to comment.