3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-10-31 11:42:28 +00:00

Changed sort of mk_empty to fix test (#7979)

This commit is contained in:
kper 2025-10-15 17:03:46 +02:00 committed by GitHub
parent 54980a38d4
commit 30878541c8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -37,7 +37,7 @@ static void tst_finite_set_basic() {
ENSURE(fsets.is_finite_set(finite_set_int.get()));
// Test creating empty set
app_ref empty_set(fsets.mk_empty(int_sort), m);
app_ref empty_set(fsets.mk_empty(finite_set_int), m);
ENSURE(fsets.is_empty(empty_set.get()));
ENSURE(empty_set->get_sort() == finite_set_int.get());