diff options
author | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2017-10-07 20:51:45 +0900 |
---|---|---|
committer | Sam Thursfield <sam.thursfield@codethink.co.uk> | 2017-11-02 11:55:11 +0000 |
commit | 4fd9dc3e5ca1b44affe04e97ab1dc40efa97a6e5 (patch) | |
tree | 28ce3622c40ddcfa5e260e97f2457f5c34ef5446 /tests/sources/fixture.py | |
parent | cd37db61bfa29e2f2732188496bc0977004c36b7 (diff) | |
download | buildstream-sam/1.0-pre.tar.gz |
Updating all test cases for the removal of architecture conditionals and optionssam/1.0-pre
Diffstat (limited to 'tests/sources/fixture.py')
-rw-r--r-- | tests/sources/fixture.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/sources/fixture.py b/tests/sources/fixture.py index 89e03cb8e..c22667ad1 100644 --- a/tests/sources/fixture.py +++ b/tests/sources/fixture.py @@ -21,7 +21,7 @@ class Setup(): def __init__(self, datafiles, target, tmpdir): directory = os.path.join(datafiles.dirname, datafiles.basename) - self.context = Context([], 'x86_64') + self.context = Context([]) self.project = Project(directory, self.context) # A message handler is required @@ -35,7 +35,7 @@ class Setup(): if not os.path.exists(self.context.builddir): os.mkdir(self.context.builddir) - loader = Loader(directory, target, self.project._options, None, None) + loader = Loader(directory, target, self.project._options) element = loader.load() # Allow repo aliases to access files in the directories using tmpdir and datafiles |