diff options
-rwxr-xr-x | qa/workunits/rest/test.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/qa/workunits/rest/test.py b/qa/workunits/rest/test.py index 0c99891bad3..272760c8289 100755 --- a/qa/workunits/rest/test.py +++ b/qa/workunits/rest/test.py @@ -141,11 +141,9 @@ if __name__ == '__main__': # XXX no ceph -w equivalent yet expect('mds/cluster_down', 'PUT', 200, '') - # failure if down - expect('mds/cluster_down', 'PUT', 400, '') + expect('mds/cluster_down', 'PUT', 200, '') + expect('mds/cluster_up', 'PUT', 200, '') expect('mds/cluster_up', 'PUT', 200, '') - # failure if up - expect('mds/cluster_up', 'PUT', 400, '') expect('mds/compat/rm_incompat?feature=4', 'PUT', 200, '') expect('mds/compat/rm_incompat?feature=4', 'PUT', 200, '') |