diff options
Diffstat (limited to 'tests/id.cc')
-rw-r--r-- | tests/id.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/id.cc b/tests/id.cc index 5270972..77a7cd9 100644 --- a/tests/id.cc +++ b/tests/id.cc @@ -29,9 +29,9 @@ class IDFixture i->set_instr_bits(raw); this->dum->set_curr_instr(i); - i = this->ct->advance(OK); + i = this->ct->advance(WAIT); REQUIRE(i == nullptr); - i = this->ct->advance(OK); + i = this->ct->advance(WAIT); REQUIRE(i != nullptr); return i; |