
From: Simon Glass <sjg@chromium.org> No caller uses this argument, so drop it. Signed-off-by: Simon Glass <sjg@chromium.org> --- test/py/console_sandbox.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/test/py/console_sandbox.py b/test/py/console_sandbox.py index da55d2fcc1f..dd721067f8f 100644 --- a/test/py/console_sandbox.py +++ b/test/py/console_sandbox.py @@ -60,14 +60,11 @@ class ConsoleSandbox(ConsoleBase): cmd += self.sandbox_flags return Spawn(cmd, cwd=self.config.source_dir, decode_signal=True) - def restart_uboot_with_flags(self, flags, expect_reset=False, use_dtb=True): + def restart_uboot_with_flags(self, flags, use_dtb=True): """Run U-Boot with the given command-line flags Args: flags: List of flags to pass, each a string - expect_reset: Boolean indication whether this boot is expected - to be reset while the 1st boot process after main boot before - prompt. False by default. use_dtb: True to use a device tree file, False to run without one Returns: @@ -77,7 +74,7 @@ class ConsoleSandbox(ConsoleBase): try: self.sandbox_flags = flags self.use_dtb = use_dtb - return self.restart_uboot(expect_reset) + return self.restart_uboot(False) finally: self.sandbox_flags = [] self.use_dtb = True -- 2.43.0 base-commit: 290829cc0d20dc4da5a8dfa43b94adcf368bc1b1 branch: labf