From 51d2125c59e8b048299fc9a4fed27533ca38fb6e Mon Sep 17 00:00:00 2001 From: Joffrey F Date: Wed, 14 Oct 2015 17:37:45 -0700 Subject: [PATCH] Pull correct version of busybox in integration tests Signed-off-by: Joffrey F --- tests/integration_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration_test.py b/tests/integration_test.py index c264a405..85eb8da9 100644 --- a/tests/integration_test.py +++ b/tests/integration_test.py @@ -79,7 +79,7 @@ def setup_module(): c.inspect_image(BUSYBOX) except NotFound: os.write(2, "\npulling busybox\n".encode('utf-8')) - for data in c.pull('busybox', stream=True): + for data in c.pull(BUSYBOX, stream=True): data = json.loads(data.decode('utf-8')) os.write(2, ("%c[2K\r" % 27).encode('utf-8')) status = data.get("status")