From bda6d195af3890ddb4a74d881759b9273bb2cd1d Mon Sep 17 00:00:00 2001 From: Rishabh Dave Date: Mon, 9 Oct 2023 16:58:16 +0530 Subject: [PATCH] src/test/pybind: don't use decorator "with_setup" Signed-off-by: Rishabh Dave --- src/test/pybind/test_cephfs.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/test/pybind/test_cephfs.py b/src/test/pybind/test_cephfs.py index d751d38cbc1..3761056efdf 100644 --- a/src/test/pybind/test_cephfs.py +++ b/src/test/pybind/test_cephfs.py @@ -909,7 +909,6 @@ def test_snapdiff(testdir): # remove directory purge_dir(b"/snapdiff_test"); -@with_setup(setup_test) def test_single_target_command(): command = {'prefix': u'session ls', 'format': 'json'} mds_spec = "a" @@ -920,7 +919,6 @@ def test_single_target_command(): # Standby MDSs will return -38 assert(ret == 0 or ret == -38) -@with_setup(setup_test) def test_multi_target_command(): mds_get_command = {'prefix': 'status', 'format': 'json'} inbuf = b'' -- 2.39.5