diff options
Diffstat (limited to 'tests/c11.h')
-rw-r--r-- | tests/c11.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/c11.h b/tests/c11.h index 983d298..57a8ee1 100644 --- a/tests/c11.h +++ b/tests/c11.h @@ -23,7 +23,7 @@ class C11 this->fetch = new int(); this->c = new Cache(new Dram(this->m_delay), 5, 0, this->c_delay); this->expected = {0, 0, 0, 0}; - this->actual = this->c->view(0, 1)[0]; + this->actual = this->c->get_data()[0]; } ~C11() @@ -42,7 +42,7 @@ class C11 // check response CHECK(!r); // check for early modifications - actual = c->view(0, 1)[0]; + actual = c->get_data()[0]; REQUIRE(this->expected == this->actual); } } |