2
0
mirror of https://gitlab.com/apparmor/apparmor synced 2025-09-05 08:45:22 +00:00

Resolve string escape sequence DeprecationWarnings

(cherry picked from commit d94731ddf4)

Adjusted to match the 3.1 branch
This commit is contained in:
Mark Grassi
2022-11-20 13:41:44 -05:00
committed by Christian Boltz
parent 99f62e346b
commit f60d4fb06c
17 changed files with 147 additions and 147 deletions

View File

@@ -162,9 +162,9 @@ type=AVC msg=audit(1348982148.195:2933): apparmor="DENIED" operation="file_lock"
self._run_file_test(content, expected_strings)
def test_simple_embedded_backslash_carat(self):
"""test simple decoding of embedded \^ in files"""
r"""test simple decoding of embedded \^ in files"""
expected_strings = ('name="/home/steve/tmp/my test \^file"',)
expected_strings = (r'name="/home/steve/tmp/my test \^file"',)
content = \
'''type=AVC msg=audit(1349805073.402:6857): apparmor="DENIED" operation="mknod" parent=5890 profile="/usr/bin/test_profile" name=2F686F6D652F73746576652F746D702F6D792074657374205C5E66696C65 pid=5891 comm="touch" requested_mask="c" denied_mask="c" fsuid=1000 ouid=1000
'''