tests: fix hashchain unit tests

and relax the not-empty safety check to stay more intuitiuve
This commit is contained in:
moneromooo-monero
2017-10-03 00:51:53 +01:00
parent a2041c9874
commit 452d4fae39
2 changed files with 2 additions and 2 deletions

View File

@@ -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));