Pull correct version of busybox in integration tests

Signed-off-by: Joffrey F <joffrey@docker.com>
This commit is contained in:
Joffrey F 2015-10-14 17:37:45 -07:00
parent 80baee55b6
commit 51d2125c59
1 changed files with 1 additions and 1 deletions

View File

@ -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")