summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorTristan Maat <tristan.maat@codethink.co.uk>2018-03-27 16:34:45 +0100
committerTristan Maat <tm@tlater.net>2018-03-28 12:16:10 +0000
commit2d7b721b8b7d2984c394e5af6ed4883baae7da1f (patch)
tree1160a970f4bad32520b31d0c0ac46d28872edc36 /tests
parent95510ad6109d1c5191b6d9cbc1a4d836de975a7c (diff)
downloadbuildstream-2d7b721b8b7d2984c394e5af6ed4883baae7da1f.tar.gz
_workspaces.py: Fix fallout from using python3.4
Diffstat (limited to 'tests')
-rw-r--r--tests/frontend/workspace.py4
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"]
}
}
}