sanitycheck: harness.py: Fix bad indentation

Getting rid of pylint warnings for a CI check. No functional change.

Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
This commit is contained in:
Ulf Magnusson 2019-09-02 11:48:44 +02:00 committed by Anas Nashif
commit ea4d1d6ff0

View file

@ -62,7 +62,7 @@ class Console(Harness):
if pattern.search(line) and not r in self.matches:
self.matches[r] = line
if len(self.matches) == len(self.regex):
self.state = "passed"
self.state = "passed"
if self.fail_on_fault:
if self.FAULT in line: