X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/f71db23824a25300618dd0625085ade8d2b3a7a8..0c5c5374313566dd9047c3e992a3c23a7ea4b8f2:/tests/data/cantfit.py diff --git a/tests/data/cantfit.py b/tests/data/cantfit.py index e15e69c..2a7cde3 100644 --- a/tests/data/cantfit.py +++ b/tests/data/cantfit.py @@ -35,6 +35,7 @@ for key in """ """.split(): if key in self.connect_kwargs: raise ValueError(err.format(key)) +concatenated_strings = "some strings that are" "concatenated implicitly, so if you put them on separate" "lines it will fit" # output @@ -85,3 +86,8 @@ for key in """ """.split(): if key in self.connect_kwargs: raise ValueError(err.format(key)) +concatenated_strings = ( + "some strings that are" + "concatenated implicitly, so if you put them on separate" + "lines it will fit" +)