From 031604989e4f111a0963a26fe273c3d5495774cc Mon Sep 17 00:00:00 2001 From: Samuel Gaist <samuel.gaist@idiap.ch> Date: Mon, 15 Apr 2019 14:51:51 +0200 Subject: [PATCH] [test][bcp] Fix name of docker image cache class variable It was useless since the file path was store in an unrelated variable. --- beat/core/test/test_bcp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beat/core/test/test_bcp.py b/beat/core/test/test_bcp.py index 5fe5702e..10d398d0 100644 --- a/beat/core/test/test_bcp.py +++ b/beat/core/test/test_bcp.py @@ -322,7 +322,7 @@ class TestBCPDocker(TestBCP): @classmethod def setUpClass(cls): - cls.images_cache = os.path.join(tmp_prefix, "docker_images_cache.json") + cls.docker_images_cache = os.path.join(tmp_prefix, "docker_images_cache.json") cls.host = Host(images_cache=cls.docker_images_cache, raise_on_errors=False) -- GitLab