summaryrefslogtreecommitdiff
path: root/tests/if.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tests/if.cc')
-rw-r--r--tests/if.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/if.cc b/tests/if.cc
index 86458d2..5c1b645 100644
--- a/tests/if.cc
+++ b/tests/if.cc
@@ -74,7 +74,7 @@ TEST_CASE_METHOD(IFPipeFixture, "fetch returns single instuction", "[if_pipe]")
InstrDTO instr;
int expected_cycles;
- expected_cycles = this->m_delay + this->c_delay + 1;
+ expected_cycles = this->m_delay + this->c_delay + 2;
this->fetch_through(instr);
CHECK(instr.get_if_cycle() == expected_cycles);
@@ -86,7 +86,7 @@ TEST_CASE_METHOD(IFPipeFixture, "fetch returns two instuctions", "[if_pipe]")
InstrDTO instr;
int expected_cycles;
- expected_cycles = this->m_delay + this->c_delay + 1;
+ expected_cycles = this->m_delay + this->c_delay + 2;
this->fetch_through(instr);
CHECK(instr.get_if_cycle() == expected_cycles);