mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
tests: fix hashchain unit tests
and relax the not-empty safety check to stay more intuitiuve
This commit is contained in:
parent
a2041c9874
commit
452d4fae39
2 changed files with 2 additions and 2 deletions
|
@ -122,7 +122,7 @@ TEST(hashchain, trim)
|
|||
ASSERT_EQ(hashchain.size(), 3);
|
||||
ASSERT_EQ(hashchain[2], make_hash(3));
|
||||
hashchain.trim(3);
|
||||
ASSERT_EQ(hashchain.offset(), 3);
|
||||
ASSERT_EQ(hashchain.offset(), 2); // never gets it empty
|
||||
ASSERT_EQ(hashchain.size(), 3);
|
||||
ASSERT_FALSE(hashchain.empty());
|
||||
ASSERT_EQ(hashchain.genesis(), make_hash(1));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue