Skip to content

Commit

Permalink
Fix invalid escape sequence
Browse files Browse the repository at this point in the history
  • Loading branch information
dcermak committed Jan 29, 2024
1 parent 882fb90 commit 66747c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/shell_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

class TestShell:
def test_quote(self):
assert Shell.quote('aa\!') == 'aa\\\\\\!'
assert Shell.quote(r'aa\!') == 'aa\\\\\\!'

@patch('kiwi.path.Path.which')
def test_quote_key_value_file(self, mock_which):
Expand Down

0 comments on commit 66747c7

Please sign in to comment.