summaryrefslogtreecommitdiffstats
path: root/src/test/pybind/test_ceph_argparse.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/pybind/test_ceph_argparse.py')
-rwxr-xr-xsrc/test/pybind/test_ceph_argparse.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/pybind/test_ceph_argparse.py b/src/test/pybind/test_ceph_argparse.py
index 32c166ced2a..630e6046b24 100755
--- a/src/test/pybind/test_ceph_argparse.py
+++ b/src/test/pybind/test_ceph_argparse.py
@@ -217,7 +217,7 @@ class TestPG(TestArgparse):
def test_pg_missing_args_output(self):
ret, _, stderr = self._capture_output(['pg'], stderr=True)
self.assertEqual({}, ret)
- self.assertRegexpMatches(stderr, re.compile('no valid command found.* closest matches'))
+ self.assertRegex(stderr, re.compile('no valid command found.* closest matches'))
def test_pg_wrong_arg_output(self):
ret, _, stderr = self._capture_output(['pg', 'map', 'bad-pgid'],