mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-20 22:33:08 +02:00
Fix SyntaxWarning invalid escape sequence in Python code (#3433)
This commit is contained in:
parent
380c740ff0
commit
b7551cbba6
37 changed files with 156 additions and 156 deletions
|
@ -204,7 +204,7 @@ class ContextManagementTest(TestCase):
|
|||
"""Test that context is unset if its definition has been removed."""
|
||||
self.t('context define work project:Work', input='y\ny\n')
|
||||
self.t('context work')
|
||||
code, out, err = self.t('context delete work', input='y\n\y\n')
|
||||
code, out, err = self.t('context delete work', input='y\ny\n')
|
||||
self.assertIn("Context 'work' deleted.", out)
|
||||
|
||||
# Assert that taskrc does not countain context work definition
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue