security: IMPORTANT CHANGE!! Change Validator constructor to accept Face& instead of shared_ptr<Face>
The old API is kept as deprecated, but will be removed as soon as all
known applications are checked and updated to use new API.
Refs: #1481
Change-Id: Iba0f92b3a3cd48235688f52ab89b2d1f0be9124b
diff --git a/tests/security/test-validator.cpp b/tests/security/test-validator.cpp
index c3e5809..2d51f32 100644
--- a/tests/security/test-validator.cpp
+++ b/tests/security/test-validator.cpp
@@ -45,8 +45,8 @@
// data must be a shared pointer
validator.validate(*data,
- bind(&onValidated, _1),
- bind(&onValidationFailed, _1, _2));
+ bind(&onValidated, _1),
+ bind(&onValidationFailed, _1, _2));
keyChain.deleteIdentity(identity);
}