diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/test-desktop.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test-desktop.py b/test/test-desktop.py index 440253e..e73ea5a 100644 --- a/test/test-desktop.py +++ b/test/test-desktop.py @@ -37,7 +37,7 @@ class DesktopEntryTest(unittest.TestCase): contents = f.read() assert "[Hallo]" in contents, contents - assert re.search("key\s*=\s*value", contents), contents + assert re.search(r"key\s*=\s*value", contents), contents # This is missing the Name key, and has an unknown Hallo group, so it # shouldn't validate. |