diff options
Diffstat (limited to 'test/py')
-rw-r--r-- | test/py/tests/test_env.py | 2 | ||||
-rw-r--r-- | test/py/tests/test_handoff.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/py/tests/test_env.py b/test/py/tests/test_env.py index 9bdaef9373..6ff38f1020 100644 --- a/test/py/tests/test_env.py +++ b/test/py/tests/test_env.py @@ -49,7 +49,7 @@ class StateTestEnv(object): for l in response.splitlines(): if not '=' in l: continue - (var, value) = l.strip().split('=', 1) + (var, value) = l.split('=', 1) self.env[var] = value def get_existent_var(self): diff --git a/test/py/tests/test_handoff.py b/test/py/tests/test_handoff.py index 0ee972298c..038f03064a 100644 --- a/test/py/tests/test_handoff.py +++ b/test/py/tests/test_handoff.py @@ -6,7 +6,7 @@ import pytest # Magic number to check that SPL handoff is working TEST_HANDOFF_MAGIC = 0x14f93c7b -@pytest.mark.boardspec('sandbox') +@pytest.mark.boardspec('sandbox_spl') @pytest.mark.buildconfigspec('spl') def test_handoff(u_boot_console): """Test that of-platdata can be generated and used in sandbox""" |