diff options
author | Simon Glass <sjg@chromium.org> | 2024-11-12 07:13:25 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-11-13 12:01:35 -0600 |
commit | 5e92fbcefc40ff45ed76757a3592a55d80f02f95 (patch) | |
tree | f3c2147610cff2b4d188de80229172bb5a3fc623 /test/py | |
parent | 8f2a9fa7d6e73d3ae8dfb7ee180ee62e725df610 (diff) |
test: Correct regex string in test_spi
Use an 'r' string to avoid a warning:
test/py/tests/test_spi.py:698: DeprecationWarning: invalid escape
sequence '\s'
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Love Kumar <love.kumar@amd.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'test/py')
-rw-r--r-- | test/py/tests/test_spi.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/py/tests/test_spi.py b/test/py/tests/test_spi.py index caca9303271..44e54738dd0 100644 --- a/test/py/tests/test_spi.py +++ b/test/py/tests/test_spi.py @@ -695,7 +695,7 @@ def test_spi_negative(u_boot_console): # Read to relocation address output = u_boot_console.run_command('bdinfo') - m = re.search('relocaddr\s*= (.+)', output) + m = re.search(r'relocaddr\s*= (.+)', output) res_area = int(m.group(1), 16) start = 0 |