summaryrefslogtreecommitdiff
path: root/tests/context/context.py
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2017-10-07 20:51:45 +0900
committerTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2017-11-03 22:25:41 +0900
commitaa4cab6875fabb9d7f73a77e15aee1da43a94430 (patch)
tree407956c7f09cf66ef8500d3dbcb49ea307b69061 /tests/context/context.py
parent52509802cb2d446a7a93725b2a67438223c9bfff (diff)
downloadbuildstream-remove-arches.tar.gz
Updating all test cases for the removal of architecture conditionals and optionsremove-arches
Diffstat (limited to 'tests/context/context.py')
-rw-r--r--tests/context/context.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/context/context.py b/tests/context/context.py
index 79691350b..48ce037f7 100644
--- a/tests/context/context.py
+++ b/tests/context/context.py
@@ -22,7 +22,7 @@ def context_fixture():
return {
'xdg-cache': cache_home,
- 'context': Context([], 'x86_64')
+ 'context': Context([])
}
@@ -32,7 +32,6 @@ def context_fixture():
def test_context_create(context_fixture):
context = context_fixture['context']
assert(isinstance(context, Context))
- assert(context.host_arch == 'x86_64')
#######################################