diff options
author | Ross Burton <ross.burton@arm.com> | 2023-03-31 14:09:11 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-04-03 11:39:59 +0100 |
commit | 1c3c56ca199921e29534a0fc2e2e4e365bf0fb7d (patch) | |
tree | b66002cab0d77e3cc641e1914df76cc76b8cea52 /meta/lib/oeqa/runtime/cases/systemd.py | |
parent | 13cc2d67e773b11be8d149252505061879c46ff8 (diff) | |
download | poky-1c3c56ca199921e29534a0fc2e2e4e365bf0fb7d.tar.gz |
oeqa/runtime: clean up deprecated backslash expansion
(From OE-Core rev: 77085a05240c3f8226b9f2199c977f2555807789)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/runtime/cases/systemd.py')
-rw-r--r-- | meta/lib/oeqa/runtime/cases/systemd.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/runtime/cases/systemd.py b/meta/lib/oeqa/runtime/cases/systemd.py index 720b4b517a..37f295492d 100644 --- a/meta/lib/oeqa/runtime/cases/systemd.py +++ b/meta/lib/oeqa/runtime/cases/systemd.py | |||
@@ -154,7 +154,7 @@ class SystemdJournalTests(SystemdTest): | |||
154 | """ | 154 | """ |
155 | 155 | ||
156 | # The expression chain that uniquely identifies the time boot message. | 156 | # The expression chain that uniquely identifies the time boot message. |
157 | expr_items=['Startup finished', 'kernel', 'userspace','\.$'] | 157 | expr_items=['Startup finished', 'kernel', 'userspace', r'\.$'] |
158 | try: | 158 | try: |
159 | output = self.journalctl(args='-o cat --reverse') | 159 | output = self.journalctl(args='-o cat --reverse') |
160 | except AssertionError: | 160 | except AssertionError: |