From 37dbbb355c8db9d22329245db64be69f1da9bc8c Mon Sep 17 00:00:00 2001 From: Anastasia Kuznetsova Date: Wed, 30 Jul 2014 12:00:50 +0400 Subject: [PATCH] Fix typo in base.py There is a typo in SetUpClass in base.py, this typo hinders running integration tests for client. Change-Id: I50fba55025729737f4850c4687dac9093dcf235f --- functionaltests/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functionaltests/base.py b/functionaltests/base.py index ccaa9829..b49f00cd 100644 --- a/functionaltests/base.py +++ b/functionaltests/base.py @@ -30,7 +30,7 @@ class MistralBase(testtools.TestCase): cls.definition = open(os.path.join( __location, 'hello.yaml'), 'rb').read() - cls.wb = cls.mistral_client_workbooks.create( + cls.wb = cls.mistral_client.workbooks.create( "wb", "Description", ["tags"]) @classmethod