X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=ceph%2Fsrc%2Fpybind%2Fmgr%2Fselftest%2Fmodule.py;h=f62d968c8988f06147f810de2711f81c036f27f6;hb=f6b5b4d738b87d88d2de35127b6b0e41eae2a272;hp=298d8cca1f838ee80545e981afdc96659fda81e7;hpb=12732ca2e80d168d344a265acffc1fbd1fa1f1b5;p=ceph.git diff --git a/ceph/src/pybind/mgr/selftest/module.py b/ceph/src/pybind/mgr/selftest/module.py index 298d8cca1..f62d968c8 100644 --- a/ceph/src/pybind/mgr/selftest/module.py +++ b/ceph/src/pybind/mgr/selftest/module.py @@ -432,11 +432,11 @@ class Module(MgrModule): import orchestrator if what == 'OrchestratorError': c = orchestrator.TrivialReadCompletion(result=None) - c.fail(orchestrator.OrchestratorError('hello', 'world')) + c.fail(orchestrator.OrchestratorError('hello, world')) return c elif what == "ZeroDivisionError": c = orchestrator.TrivialReadCompletion(result=None) - c.fail(ZeroDivisionError('hello', 'world')) + c.fail(ZeroDivisionError('hello, world')) return c assert False, repr(what)