diff options
author | Nicolai Hähnle <nicolai.haehnle@amd.com> | 2017-09-19 10:09:40 +0200 |
---|---|---|
committer | Nicolai Hähnle <nicolai.haehnle@amd.com> | 2017-10-18 13:47:14 +0200 |
commit | 349ab086ed7764c42db9b10881bbdc200e52527f (patch) | |
tree | ab23e888baa97fef59a6f64ab73d23fb37344cfd /framework/test | |
parent | 832b0c4780ce460efb045f4d97694f8a7470601c (diff) |
framework: fix a comment
See ReducedProcessMixin._run_command:
if not self._is_cherry():
... rerun path ...
Reviewed-by: Eric Anholt <eric@anholt.net>
Diffstat (limited to 'framework/test')
-rw-r--r-- | framework/test/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/test/base.py b/framework/test/base.py index e74ea3d38..0b7ebab2e 100644 --- a/framework/test/base.py +++ b/framework/test/base.py @@ -559,7 +559,7 @@ class ReducedProcessMixin(object): def _is_cherry(self): """Method used to determine if rerunning is required. - If this returns True then the rerun path will be entered, otherwise + If this returns False then the rerun path will be entered, otherwise _run_command is effectively a bare call to super(). Classes using this mixin may need to overwrite this if the binary |