diff options
Diffstat (limited to 'meta/lib/patchtest/tests/test_mbox_format.py')
-rw-r--r-- | meta/lib/patchtest/tests/test_mbox_format.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/meta/lib/patchtest/tests/test_mbox_format.py b/meta/lib/patchtest/tests/test_mbox_format.py index 42a8491a09..c9e0465835 100644 --- a/meta/lib/patchtest/tests/test_mbox_format.py +++ b/meta/lib/patchtest/tests/test_mbox_format.py | |||
@@ -5,11 +5,10 @@ | |||
5 | # SPDX-License-Identifier: GPL-2.0 | 5 | # SPDX-License-Identifier: GPL-2.0 |
6 | 6 | ||
7 | import base | 7 | import base |
8 | import re | ||
9 | 8 | ||
10 | class MboxFormat(base.Base): | 9 | class MboxFormat(base.Base): |
11 | 10 | ||
12 | def test_mbox_format(self): | 11 | def test_mbox_format(self): |
13 | if self.unidiff_parse_error: | 12 | if self.unidiff_parse_error: |
14 | self.fail('Series cannot be parsed correctly due to malformed diff lines. Create the series again using git-format-patch and ensure it can be applied using git am', | 13 | self.fail('Series cannot be parsed correctly due to malformed diff lines. Create the series again using git-format-patch and ensure it can be applied using git am', |
15 | data=[('Diff line', re.sub('^.+:\s(?<!$)','',self.unidiff_parse_error))]) | 14 | data=[('Diff line',self.unidiff_parse_error)]) |