Bug 1050724 - Correct list of possible subtest statuses, r=Ms2ger

This commit is contained in:
James Graham 2014-08-08 11:42:21 +01:00
parent acf36e65bd
commit 05ef68b31b

View File

@ -148,7 +148,7 @@ class Status(DataType):
return value
class SubStatus(Status):
allowed = ["PASS", "FAIL", "ERROR", "TIMEOUT", "CRASH", "ASSERT"]
allowed = ["PASS", "FAIL", "ERROR", "TIMEOUT", "ASSERT", "NOTRUN"]
class Dict(DataType):
def convert(self, data):