tests: fix call to print_dot according to default arguments
* tests/core/twacube.cc: here.
This commit is contained in:
parent
a9178fbe64
commit
88dc500aa7
1 changed files with 2 additions and 2 deletions
|
|
@ -49,7 +49,7 @@ int main()
|
||||||
|
|
||||||
// Test translation
|
// Test translation
|
||||||
auto aut = twa_to_twacube(tg);
|
auto aut = twa_to_twacube(tg);
|
||||||
spot::print_dot(std::cout, tg);
|
spot::print_dot(std::cout, tg, "A");
|
||||||
std::cout << "-----------\n" << *aut << "-----------\n";
|
std::cout << "-----------\n" << *aut << "-----------\n";
|
||||||
|
|
||||||
const std::vector<std::string>& aps = aut->get_ap();
|
const std::vector<std::string>& aps = aut->get_ap();
|
||||||
|
|
@ -63,5 +63,5 @@ int main()
|
||||||
<< ' ' << d.acc_
|
<< ' ' << d.acc_
|
||||||
<< std::endl;
|
<< std::endl;
|
||||||
}
|
}
|
||||||
spot::print_dot(std::cout, spot::twacube_to_twa(aut));
|
spot::print_dot(std::cout, spot::twacube_to_twa(aut), "A");
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue