Merge "Fix nan Vts test"

This commit is contained in:
Nate Jiang
2020-02-20 05:51:52 +00:00
committed by Android (Google) Code Review
2 changed files with 2 additions and 2 deletions

View File

@@ -439,7 +439,7 @@ class WifiNanIfaceHidlTest : public ::testing::TestWithParam<std::string> {
// synchronization objects
std::mutex mtx_;
std::condition_variable cv_;
int count_;
int count_ = 0;
protected:
android::sp<::android::hardware::wifi::V1_2::IWifiNanIface> iwifiNanIface;

View File

@@ -440,7 +440,7 @@ class WifiNanIfaceHidlTest : public ::testing::TestWithParam<std::string> {
// synchronization objects
std::mutex mtx_;
std::condition_variable cv_;
int count_;
int count_ = 0;
protected:
android::sp<::android::hardware::wifi::V1_4::IWifiNanIface> iwifiNanIface;