Fix check for DisabledDataStatusCheck

disabledCount is expected to be less than or equal to 1.
Fix this by replacing EXPECT_LE with EXPECT_GE.

Bug: 263977605
Change-Id: Id6c803fed814ae13c0f160bb644c31d5d6093738
This commit is contained in:
Badhri Jagan Sridharan
2023-01-04 22:45:03 +00:00
parent bab42594b2
commit 6dcb4177e2

View File

@@ -307,7 +307,7 @@ TEST_P(UsbAidlTest, DisabledDataStatusCheck) {
}
}
}
EXPECT_LE(1, disabledCount);
EXPECT_GE(1, disabledCount);
ALOGI("UsbAidlTest DataStatusCheck end");
}