Skip to content

Commit

Permalink
Update unexpected reset host test for htrun
Browse files Browse the repository at this point in the history
Update the key used in the reset host to match the latest version of
htrun.
  • Loading branch information
c1728p9 committed Nov 20, 2017
1 parent 8d336f2 commit b958997
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions TESTS/host_tests/unexpected_reset.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def run_gen(key, value, time):
except StopIteration:
self._error = True

for resp in ("start", "read", "format_done", "soft_reset_dut_complete"):
for resp in ("start", "read", "format_done", "reset_complete"):
self.register_callback(resp, run_gen)

def teardown(self):
Expand Down Expand Up @@ -86,7 +86,7 @@ def unexpected_reset_test(self):
# Wait for start token
key, value, time = yield
self.log("Key from yield: %s" % key)
if key != "soft_reset_dut_complete":
if key != "reset_complete":
return


Expand Down

0 comments on commit b958997

Please sign in to comment.