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

fix unit test for default exception

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2015-07-06 22:52:44 -07:00
parent 940fed16e1
commit e2adcc19ec

View file

@ -54,7 +54,7 @@ static void tst1() {
static void tst2() {
try {
throw default_exception("Format %d %s", 12, "twelve");
throw default_exception(default_exception::fmt(), "Format %d %s", 12, "twelve");
}
catch (z3_exception& ex) {
std::cerr << ex.msg() << "\n";