Change-Id: Ib4a09a9118ea0fd733040f3002fe21ca58464ec8
Signed-off-by: jkjo92 <jkjo92@samsung.com>
*/
int utc_fido_client_authenticator_get_is_second_factor_only_p(void)
{
- int ret = FIDO_ERROR_NONE;
- bool ret_value = false;
-
- ret_value = fido_authenticator_get_is_second_factor_only(NULL);
- if(!g_feature) {
- assert_eq(ret, FIDO_ERROR_NOT_SUPPORTED);
- return 0;
- }
- assert_eq(ret_value, false);
+ bool ret = fido_authenticator_get_is_second_factor_only(NULL);
+ assert_eq(ret, false);
return 0;
}