Skip to content

Commit 21b8782

Browse files
committed
remove trailing whitespace
1 parent 5cbdc32 commit 21b8782

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/azure-cli/azure/cli/command_modules/acs/tests/latest/test_validators.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1767,7 +1767,7 @@ def test_enable_supported_type_when_already_enabled(self):
17671767
storage_type = acstor_consts.CONST_STORAGE_POOL_TYPE_EPHEMERAL_DISK
17681768
with self.assertRaises(InvalidArgumentValueError) as cm:
17691769
acstor_validator.validate_enable_azure_container_storage_params(
1770-
storage_type, True, True, False, False, "", None, None, None, None,
1770+
storage_type, True, True, False, False, "", None, None, None, None,
17711771
)
17721772
err = (
17731773
f"Cannot enable Azure Container Storage option(s) '{storage_type}' "
@@ -1791,7 +1791,7 @@ def test_enable_multiple_types_when_all_are_already_enabled(self):
17911791
storage_types = [acstor_consts.CONST_STORAGE_POOL_TYPE_EPHEMERAL_DISK, acstor_consts.CONST_STORAGE_POOL_TYPE_ELASTIC_SAN]
17921792
with self.assertRaises(InvalidArgumentValueError) as cm:
17931793
acstor_validator.validate_enable_azure_container_storage_params(
1794-
storage_types, True, True, True, False, "", None, None, None, None,
1794+
storage_types, True, True, True, False, "", None, None, None, None,
17951795
)
17961796
err = (
17971797
f"Cannot enable Azure Container Storage option(s) '{storage_types}' "
@@ -1805,7 +1805,7 @@ def test_enable_multiple_types_when_some_are_unsupported(self):
18051805
storage_types = [supported_storage_type, unsupported_storage_type]
18061806
with self.assertRaises(InvalidArgumentValueError) as cm:
18071807
acstor_validator.validate_enable_azure_container_storage_params(
1808-
storage_types, False, False, False, False, "", None, None, None, None,
1808+
storage_types, False, False, False, False, "", None, None, None, None,
18091809
)
18101810
err = (
18111811
f"Unsupported Azure Container Storage option '{unsupported_storage_type}'. "
@@ -1817,7 +1817,7 @@ def test_enable_unsupported_type(self):
18171817
storage_type = acstor_consts.CONST_STORAGE_POOL_TYPE_AZURE_DISK
18181818
with self.assertRaises(InvalidArgumentValueError) as cm:
18191819
acstor_validator.validate_enable_azure_container_storage_params(
1820-
storage_type, False, False, False, False, "", None, None, None, None,
1820+
storage_type, False, False, False, False, "", None, None, None, None,
18211821
)
18221822
err = (
18231823
f"Unsupported Azure Container Storage option '{storage_type}'. "

0 commit comments

Comments
 (0)