From e927cd2cf23d97e0d49647f79acd2f3a95bd43c3 Mon Sep 17 00:00:00 2001 From: David Zafman Date: Fri, 7 Apr 2017 11:52:57 -0700 Subject: [PATCH] test: Fix intended test flow and restore nearfull-ratio This is inconsequential but seems to have always been wrong since original commit 6cafb0e3e0bc5f992c2483a46cb00e83dca035cc Signed-off-by: David Zafman --- qa/workunits/rest/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/workunits/rest/test.py b/qa/workunits/rest/test.py index 1208f85b907ea..1a7ab30b88630 100755 --- a/qa/workunits/rest/test.py +++ b/qa/workunits/rest/test.py @@ -362,7 +362,7 @@ if __name__ == '__main__': expect('osd/set-nearfull-ratio?ratio=0.90', 'PUT', 200, '') r = expect('osd/dump', 'GET', 200, 'json', JSONHDR) assert(float(r.myjson['output']['nearfull_ratio']) == 0.90) - expect('osd/set-full-ratio?ratio=0.85', 'PUT', 200, '') + expect('osd/set-nearfull-ratio?ratio=0.85', 'PUT', 200, '') r = expect('pg/stat', 'GET', 200, 'json', JSONHDR) assert('num_pgs' in r.myjson['output']) -- 2.39.5