From 89b8d2316186c8df3135fa2cd480dc41da25d60d Mon Sep 17 00:00:00 2001 From: Giuseppe Scrivano Date: Fri, 29 Jul 2016 11:50:42 +0200 Subject: [PATCH] tests: test_pull.py doesn't fetch fedora each time Use the image already fetched through Docker of the fedora image instead of fetching it over the network each time. Signed-off-by: Giuseppe Scrivano Closes: #503 Approved by: cgwalters --- tests/unit/test_pull.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/test_pull.py b/tests/unit/test_pull.py index 133fd01..c7a4d03 100644 --- a/tests/unit/test_pull.py +++ b/tests/unit/test_pull.py @@ -5,7 +5,7 @@ from Atomic import atomic class TestAtomicPull(unittest.TestCase): class Args(): def __init__(self): - self.image = "fedora" + self.image = "docker:fedora" self.user = False def test_pull_as_privileged_user(self):