summaryrefslogtreecommitdiff
path: root/troveclient/tests/test_v1_shell.py
diff options
context:
space:
mode:
Diffstat (limited to 'troveclient/tests/test_v1_shell.py')
-rw-r--r--troveclient/tests/test_v1_shell.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/troveclient/tests/test_v1_shell.py b/troveclient/tests/test_v1_shell.py
index e6adb83..07b709e 100644
--- a/troveclient/tests/test_v1_shell.py
+++ b/troveclient/tests/test_v1_shell.py
@@ -221,7 +221,7 @@ class ShellTest(utils.TestCase):
def test_flavor_list_error(self):
cmd = 'flavor-list --datastore_type mysql'
- exepcted_error_msg = ('Missing argument\(s\): '
+ exepcted_error_msg = (r'Missing argument\(s\): '
'datastore_type, datastore_version_id')
self.assertRaisesRegex(
exceptions.MissingArgs, exepcted_error_msg, self.run_command,
@@ -256,7 +256,7 @@ class ShellTest(utils.TestCase):
def test_volume_type_list_error(self):
cmd = 'volume-type-list --datastore_type mysql'
- exepcted_error_msg = ('Missing argument\(s\): '
+ exepcted_error_msg = (r'Missing argument\(s\): '
'datastore_type, datastore_version_id')
self.assertRaisesRegex(
exceptions.MissingArgs, exepcted_error_msg, self.run_command,