Skip to content

Commit 0b5663b

Browse files
committedMay 17, 2018
tests: use raw strings in the test strings
Related-to: git-cola#823 Signed-off-by: David Aguilar <[email protected]>
1 parent 32415af commit 0b5663b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
 

‎test/diffparse_test.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,9 @@ def test_diff(self):
3030
self.assertEqual(hunks[0].lines[4], '+class DiffSource(object):\n')
3131
self.assertEqual(
3232
hunks[0].lines[-1],
33-
" self._header_start_re = re.compile('^@@ -(\\d+)"
34-
" \\+(\\d+),(\\d+) @@.*')\n")
33+
r" self._header_start_re = re.compile('^@@ -(\d+)"
34+
r" \+(\d+),(\d+) @@.*')"
35+
'\n')
3536

3637
self.assertEqual(hunks[1].first_line_idx, 23)
3738
self.assertEqual(len(hunks[1].lines), 18)

0 commit comments

Comments
 (0)
Please sign in to comment.