diff options
author | Tom Rini <trini@konsulko.com> | 2020-01-02 10:27:47 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-01-02 10:27:47 -0500 |
commit | 13ef116507df73b6e66cc18f04edd00ffdafd595 (patch) | |
tree | 75da8f46c5f7143f10eccccb219718569c48e11f /test/py/tests/test_env.py | |
parent | 6cb87cbb1475f668689f95911d1521ee6ba7f55c (diff) | |
parent | 1785bf54af07152421ab83794ecf420c111597e4 (diff) |
Merge branch '2020-01-02-master-imports'
- Assorted test.py fixes
- Other minor changes
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 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): |