diff options
author | bd <bdunahu@operationnull.com> | 2025-03-26 22:01:54 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-03-26 22:01:54 -0400 |
commit | 8d37d15ebd1221e3b1698abb3b051d9d0c044c93 (patch) | |
tree | fd3263d2754d662fdad6d69851f14a84f44db4d1 /tests/controller.cc | |
parent | c30535c914a8ac32278f1af0b16968550d0fb466 (diff) |
Fix timing issues in fetch tests
Diffstat (limited to 'tests/controller.cc')
-rw-r--r-- | tests/controller.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/controller.cc b/tests/controller.cc index a2f8e7d..e3b9f3c 100644 --- a/tests/controller.cc +++ b/tests/controller.cc @@ -43,7 +43,7 @@ TEST_CASE_METHOD( gprs = this->ct->get_gprs(); - CHECK(this->ct->get_clock_cycle() == 0); + CHECK(this->ct->get_clock_cycle() == 1); CHECK(std::all_of( gprs.begin(), gprs.end(), [](int value) { return value == 0; })); // change me later |