summaryrefslogtreecommitdiffstats
path: root/snaps/config/tests/cluster_template_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'snaps/config/tests/cluster_template_tests.py')
-rw-r--r--snaps/config/tests/cluster_template_tests.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/snaps/config/tests/cluster_template_tests.py b/snaps/config/tests/cluster_template_tests.py
index 5c695b9..e06b783 100644
--- a/snaps/config/tests/cluster_template_tests.py
+++ b/snaps/config/tests/cluster_template_tests.py
@@ -14,9 +14,9 @@
# limitations under the License.
import unittest
-from snaps.config.cluster_template import ClusterTemplateConfig, \
- ClusterTypeConfigError, ServerType, DockerStorageDriver, \
- ContainerOrchestrationEngine
+from snaps.config.cluster_template import (
+ ClusterTemplateConfig, ClusterTemplateConfigError, ServerType,
+ DockerStorageDriver, ContainerOrchestrationEngine)
class ClusterTemplateConfigUnitTests(unittest.TestCase):
@@ -25,15 +25,15 @@ class ClusterTemplateConfigUnitTests(unittest.TestCase):
"""
def test_no_params(self):
- with self.assertRaises(ClusterTypeConfigError):
+ with self.assertRaises(ClusterTemplateConfigError):
ClusterTemplateConfig()
def test_empty_config(self):
- with self.assertRaises(ClusterTypeConfigError):
+ with self.assertRaises(ClusterTemplateConfigError):
ClusterTemplateConfig(config=dict())
def test_name_only(self):
- with self.assertRaises(ClusterTypeConfigError):
+ with self.assertRaises(ClusterTemplateConfigError):
ClusterTemplateConfig(name='foo')
def test_minimal_named(self):