Description: It seems that those CAPIs need to return not permitted error
at the context of negative TCs.
Change-Id: I4f18b2501aa507f62027d2f95045517d0f95896d
Signed-off-by: Yu jiung <jiung.yu@samsung.com>
ret = wifi_direct_start_service_discovery(mac_addr, 10);
- assert_eq(ret, WIFI_DIRECT_ERROR_INVALID_PARAMETER);
+ assert_eq(ret, WIFI_DIRECT_ERROR_NOT_PERMITTED);
return 0;
}
ret = wifi_direct_cancel_service_discovery(mac_addr, 10);
- assert_eq(ret, WIFI_DIRECT_ERROR_INVALID_PARAMETER);
+ assert_eq(ret, WIFI_DIRECT_ERROR_NOT_PERMITTED);
return 0;
}