diff options
author | Tom Rini <trini@konsulko.com> | 2020-09-14 15:39:27 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-09-14 15:39:46 -0400 |
commit | 00e5fda0063eaa20e9c3f6844ac88c64eb875f23 (patch) | |
tree | 20397adfefbe204c2b348e271c056620f4bcadcc /test/py/tests/test_env.py | |
parent | 3dd52dd69e6507624c7bb98aa1dbd5034221afcd (diff) | |
parent | 185440ffc46f310b0f300c10804ba3cb0a7bf15a (diff) |
Merge branch '2020-09-12-assorted-bugfixes'
- A large assortment of minor fixes
- Documentation improvements
Diffstat (limited to 'test/py/tests/test_env.py')
-rw-r--r-- | test/py/tests/test_env.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/py/tests/test_env.py b/test/py/tests/test_env.py index 2ae8f25381..940279651d 100644 --- a/test/py/tests/test_env.py +++ b/test/py/tests/test_env.py @@ -151,7 +151,7 @@ def validate_empty(state_test_env, var): Nothing. """ - response = state_test_env.u_boot_console.run_command('echo $%s' % var) + response = state_test_env.u_boot_console.run_command('echo ${%s}' % var) assert response == '' def validate_set(state_test_env, var, value): |