Skip to content

Commit

Permalink
Fix string concatenation after Black formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Nov 15, 2022
1 parent eccdcfd commit 61efb53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions testing/test_iniconfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
[(0, None, "names", "Alice\nBob")],
),
"value with aligned continuation": (
"names = Alice\n" " Bob",
"names = Alice\n Bob",
[(0, None, "names", "Alice\nBob")],
),
"blank line": (
Expand Down Expand Up @@ -141,7 +141,7 @@ def test_iniconfig_duplicate_key_fails():
def test_iniconfig_lineof():
config = IniConfig(
"x.ini",
data=("[section]\n" "value = 1\n" "[section2]\n" "# comment\n" "value =2"),
data=("[section]\nvalue = 1\n[section2]\n# comment\nvalue =2"),
)

assert config.lineof("missing") is None
Expand Down

0 comments on commit 61efb53

Please sign in to comment.