summaryrefslogtreecommitdiff
path: root/tests/test_logic.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_logic.cpp')
-rw-r--r--tests/test_logic.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_logic.cpp b/tests/test_logic.cpp
index 397b792..56c8290 100644
--- a/tests/test_logic.cpp
+++ b/tests/test_logic.cpp
@@ -59,10 +59,10 @@ BOOST_AUTO_TEST_CASE(logic_setup) {
BOOST_REQUIRE(setup() == NO_ERROR);
// double setup
- BOOST_REQUIRE(setup() == INTERNAL_ERROR);
+ BOOST_REQUIRE(setup() == NO_ERROR);
// double setup
- BOOST_REQUIRE(setup() == INTERNAL_ERROR);
+ BOOST_REQUIRE(setup() == NO_ERROR);
}
BOOST_AUTO_TEST_CASE(logic_workflow_mixed) {
@@ -466,7 +466,7 @@ BOOST_AUTO_TEST_CASE(logic_workflow_gio_timeout) {
// Run gmainloop.
run(3);
- BOOST_REQUIRE(is_gmain_loop_running() == false);
+ BOOST_REQUIRE(is_running() == false);
}
BOOST_AUTO_TEST_SUITE_END()