summaryrefslogtreecommitdiff
path: root/tests/context/context.py
diff options
context:
space:
mode:
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')
#######################################