Skip to content

Commit

Permalink
flake8 line length
Browse files Browse the repository at this point in the history
  • Loading branch information
David Rabel committed Oct 17, 2024
1 parent 4301935 commit b6c01d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/rules/test_new_lines.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def test_platform_type(self):
self.check('\n', conf)
self.check('\r\n', conf, problem=(1, 1))
self.check('---\ntext\n', conf)
self.check('---\r\ntext\r\n', conf, problem1=(1, 4), problem2=(2, 5)) # yamllint disable-line rule:line-length
self.check('---\r\n#\r\n', conf, problem1=(1, 4), problem2=(2, 2))
self.check('---\r\ntext\n', conf, problem=(1, 4))
self.check('---\ntext\r\nfoo\n', conf, problem=(2, 5))
self.check('---\ntext\r\n', conf, problem=(2, 5))
Expand Down

0 comments on commit b6c01d2

Please sign in to comment.