From 3ee4feee49dd6418f98d6fcc2c938a1c0792f294 Mon Sep 17 00:00:00 2001 From: Federico Ressi Date: Thu, 14 Mar 2019 14:56:28 +0100 Subject: [PATCH] Fix typing error. Change-Id: Ic40d60aea45d878fb578802efbc31a53dc45b071 --- tobiko/tests/unit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tobiko/tests/unit.py b/tobiko/tests/unit.py index 05fcdf796..547253fe1 100644 --- a/tobiko/tests/unit.py +++ b/tobiko/tests/unit.py @@ -39,7 +39,7 @@ class TobikoUnitTest(base.TobikoTest): self.addCleanup(context.stop) return mock_object - def create_temdir(self, *args, **kwargs): + def create_tempdir(self, *args, **kwargs): dir_path = tempfile.mkdtemp(*args, **kwargs) self.addCleanup(shutil.rmtree(dir_path, ignore_errors=True)) return dir_path