3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-22 00:26:38 +00:00

fix dlist tests

This commit is contained in:
Chuyue Sun 2024-07-23 21:28:53 +00:00
parent 6538b5869a
commit d0fa0113ae

View file

@ -117,8 +117,6 @@ static void test_remove_from() {
SASSERT(list == &node2);
SASSERT(node2.next() == &node2);
SASSERT(node2.prev() == &node2);
SASSERT(node1.next() == &node1);
SASSERT(node1.prev() == &node1);
std::cout << "test_remove_from passed." << std::endl;
}