]> git.sur5r.net Git - u-boot/blobdiff - test/py/tests/test_shell_basics.py
test/py: Quote consistency
[u-boot] / test / py / tests / test_shell_basics.py
index 32e5f83015d34ef3fe7e37590780d7c094dbfcc8..702e5e27e002c9fd59306f96927b505c56cf9bc1 100644 (file)
@@ -31,7 +31,7 @@ def test_shell_semicolon_three(u_boot_console):
 def test_shell_run(u_boot_console):
     """Test the "run" shell command."""
 
-    u_boot_console.run_command('setenv foo \"setenv monty 1; setenv python 2\"')
+    u_boot_console.run_command('setenv foo "setenv monty 1; setenv python 2"')
     u_boot_console.run_command('run foo')
     response = u_boot_console.run_command('echo $monty')
     assert response.strip() == '1'