Fix executor docstrings

This commit is contained in:
Joe Ranweiler
2018-02-14 14:25:10 -08:00
parent 0b82d4e409
commit c1b91432fd
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -479,7 +479,7 @@ class DeepState(object):
def api_crash(self):
"""Implements the `DeepState_Crash` API function, which marks this test as
having failed, and stops further execution."""
having crashed, and stops further execution."""
self.context['crashed'] = True
info = self.context['info']
self.log_message(LOG_LEVEL_ERROR, "Crashed: {}".format(info.name))
+1 -1
View File
@@ -186,7 +186,7 @@ def hook_Pass(state):
def hook_Fail(state):
"""Implements DeepState_Fail, which notifies us of a passing test."""
"""Implements DeepState_Fail, which notifies us of a failing test."""
DeepManticore(state).api_fail()