Fix SyntaxWarning invalid escape sequence in Python code (#3433)

This commit is contained in:
Christian Clauss 2024-05-03 02:22:33 +02:00 committed by GitHub
parent 380c740ff0
commit b7551cbba6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
37 changed files with 156 additions and 156 deletions

View file

@ -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