mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 11:36:00 +00:00
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:
@@ -307,7 +307,7 @@ TEST_P(UsbAidlTest, DisabledDataStatusCheck) {
|
||||
}
|
||||
}
|
||||
}
|
||||
EXPECT_LE(1, disabledCount);
|
||||
EXPECT_GE(1, disabledCount);
|
||||
ALOGI("UsbAidlTest DataStatusCheck end");
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user