fixed blocking queue again

This commit is contained in:
Jonas Zeunert
2018-07-11 16:55:12 +02:00
parent a8eddc1650
commit ddb6d445dd
2 changed files with 6 additions and 53 deletions

View File

@@ -56,7 +56,7 @@ SCENARIO("An EventHandler gets [un]registered at the notifier", "[un-register no
THEN("The EventHandler gets saved")
{
REQUIRE(*(notifier.event_handler.find(&event_handler_mock.get())) == &event_handler_mock.get());
REQUIRE(*notifier.event_handler.begin() == &event_handler_mock.get());
}
}