diff options
author | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2018-04-14 17:13:38 +0900 |
---|---|---|
committer | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2018-04-14 17:32:09 +0900 |
commit | a4927ad35f9609252d9718a5867eb3ffacebbc56 (patch) | |
tree | 9a5c4b81ffc0f87b2947bb88c2a9513c3e0bf916 | |
parent | cb702588718b5a15092ac712dcb3a42b46159fa9 (diff) | |
download | buildstream-a4927ad35f9609252d9718a5867eb3ffacebbc56.tar.gz |
tests/frontend/show.py: Removing some unused variables
-rw-r--r-- | tests/frontend/show.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/frontend/show.py b/tests/frontend/show.py index 16abe5f40..f515fc44d 100644 --- a/tests/frontend/show.py +++ b/tests/frontend/show.py @@ -23,7 +23,6 @@ DATA_DIR = os.path.join( ]) def test_show(cli, datafiles, target, format, expected): project = os.path.join(datafiles.dirname, datafiles.basename) - checkout = os.path.join(cli.directory, 'checkout') result = cli.run(project=project, silent=True, args=[ 'show', '--deps', 'none', @@ -45,7 +44,6 @@ def test_show(cli, datafiles, target, format, expected): ]) def test_show_except(cli, datafiles, target, except_, expected): project = os.path.join(datafiles.dirname, datafiles.basename) - checkout = os.path.join(cli.directory, 'checkout') result = cli.run(project=project, silent=True, args=[ 'show', '--deps', 'all', |