diff --git a/tests/core/proc/control/command-instance-manager-test.cpp b/tests/core/proc/control/command-instance-manager-test.cpp
index a1dcd573d..c238bf854 100644
--- a/tests/core/proc/control/command-instance-manager-test.cpp
+++ b/tests/core/proc/control/command-instance-manager-test.cpp
@@ -79,13 +79,13 @@ namespace test {
public:
bool
- contains (Symbol instanceID)
+ contains (Command const& ref)
{
return queue_.end()!= std::find_if (queue_.begin()
,queue_.end()
,[=](Command const& elm)
{
- return instanceID == elm.getID();
+ return elm == ref;
});
}
};
@@ -128,8 +128,8 @@ namespace test {
CHECK (cmd.canExec());
iManager.dispatch (instanceID);
+ CHECK (fixture.contains (cmd));
CHECK (not iManager.contains (instanceID));
- CHECK (fixture.contains (instanceID));
VERIFY_ERROR (INVALID_COMMAND, iManager.getInstance (instanceID));
}
};
diff --git a/wiki/thinkPad.ichthyo.mm b/wiki/thinkPad.ichthyo.mm
index e5e93fa15..f8494dc7b 100644
--- a/wiki/thinkPad.ichthyo.mm
+++ b/wiki/thinkPad.ichthyo.mm
@@ -2663,7 +2663,7 @@