Commit a79cfd9a authored by Jeremy Hylton's avatar Jeremy Hylton

Don't cause test to fail if the severity is PROBLEM, must be ERROR or PANIC.

parent b26a7ca5
......@@ -49,7 +49,7 @@ def catch_log_errors():
def log_write(subsystem, severity, summary, detail, error,
PROBLEM=zLOG.PROBLEM):
if severity >= PROBLEM:
if severity > PROBLEM:
assert 0, "%s(%s): %s" % (subsystem, severity, summary)
zLOG.old_log_write = zLOG.log_write
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment