diff options
author | Tristan Maat <tristan.maat@codethink.co.uk> | 2018-03-27 16:34:45 +0100 |
---|---|---|
committer | Tristan Maat <tm@tlater.net> | 2018-03-28 12:16:10 +0000 |
commit | 2d7b721b8b7d2984c394e5af6ed4883baae7da1f (patch) | |
tree | 1160a970f4bad32520b31d0c0ac46d28872edc36 /tests | |
parent | 95510ad6109d1c5191b6d9cbc1a4d836de975a7c (diff) | |
download | buildstream-2d7b721b8b7d2984c394e5af6ed4883baae7da1f.tar.gz |
_workspaces.py: Fix fallout from using python3.4
Diffstat (limited to 'tests')
-rw-r--r-- | tests/frontend/workspace.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/frontend/workspace.py b/tests/frontend/workspace.py index 8bbd516d3..b9744159b 100644 --- a/tests/frontend/workspace.py +++ b/tests/frontend/workspace.py @@ -302,7 +302,7 @@ def test_list_unsupported_workspace(cli, tmpdir, datafiles, workspace_cfg): "path": "/workspaces/bravo", "last_successful": "some_key", "running_files": { - "beta.bst": set(["some_file"]) + "beta.bst": ["some_file"] } } } @@ -313,7 +313,7 @@ def test_list_unsupported_workspace(cli, tmpdir, datafiles, workspace_cfg): "path": "/workspaces/bravo", "last_successful": "some_key", "running_files": { - "beta.bst": set(["some_file"]) + "beta.bst": ["some_file"] } } } |