diff options
author | Simon Glass <sjg@chromium.org> | 2025-02-09 09:07:16 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2025-03-15 11:02:04 +0000 |
commit | dd693ecb60384049dd8c3f6a36331c1a70b6558f (patch) | |
tree | 6248a494ab3d0ba11f0834abb1cab9fba6db5456 /test/py/tests/test_sandbox_opts.py | |
parent | d9ed4b75add4b4ccc37cf32b54cd9c77f48e3396 (diff) |
test/py: Drop importing utils as util
Now that we have a shorter name, we don't need this sort of thing.
Drop it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com> # test_android
Diffstat (limited to 'test/py/tests/test_sandbox_opts.py')
-rw-r--r-- | test/py/tests/test_sandbox_opts.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/py/tests/test_sandbox_opts.py b/test/py/tests/test_sandbox_opts.py index 16901409172..f50302cbe6b 100644 --- a/test/py/tests/test_sandbox_opts.py +++ b/test/py/tests/test_sandbox_opts.py @@ -4,7 +4,7 @@ import pytest -import utils as util +import utils # This is needed for Azure, since the default '..' directory is not writeable TMPDIR = '/tmp/test_cmdline' @@ -15,7 +15,7 @@ def test_sandbox_cmdline(ubman): """Test building sandbox without CONFIG_CMDLINE""" cons = ubman - out = util.run_and_log( + utils.run_and_log( cons, ['./tools/buildman/buildman', '-m', '--board', 'sandbox', '-a', '~CMDLINE', '-o', TMPDIR]) @@ -25,6 +25,6 @@ def test_sandbox_lto(ubman): """Test building sandbox without CONFIG_LTO""" cons = ubman - out = util.run_and_log( + utils.run_and_log( cons, ['./tools/buildman/buildman', '-m', '--board', 'sandbox', '-a', '~LTO', '-o', TMPDIR]) |