diff options
Diffstat (limited to 'tosca2heat/tosca-parser/toscaparser/tests/test_functions.py')
-rw-r--r-- | tosca2heat/tosca-parser/toscaparser/tests/test_functions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tosca2heat/tosca-parser/toscaparser/tests/test_functions.py b/tosca2heat/tosca-parser/toscaparser/tests/test_functions.py index 4d063e5..81de909 100644 --- a/tosca2heat/tosca-parser/toscaparser/tests/test_functions.py +++ b/tosca2heat/tosca-parser/toscaparser/tests/test_functions.py @@ -116,7 +116,7 @@ class IntrinsicFunctionsTest(TestCase): self.assertEqual(3306, dbms_port.result()) dbms_root_password = self._get_property(mysql_dbms, 'root_password') - self.assertIsNone(dbms_root_password.result()) + self.assertEqual(dbms_root_password.result(), "12345678") def test_get_property_with_host(self): tosca_tpl = os.path.join( |