Fix argument order in api level test

Looks like the arguments were unintentionally swapped?

Bug: 155526611
Change-Id: I39d49f94387cfd337c89becb5eb6f85ca638bef1
Merged-In: I39d49f94387cfd337c89becb5eb6f85ca638bef1
Signed-off-by: Alistair Delva <adelva@google.com>
(cherry picked from commit bed98c0deb)
This commit is contained in:
Alistair Delva 2020-05-03 20:08:26 -07:00 committed by Anton Hansson
parent 524510bc5c
commit 40a86559c3
1 changed files with 1 additions and 1 deletions

View File

@ -35,6 +35,6 @@
TEST(android_get_device_api_level, smoke) {
#if __BIONIC__
// This will fail if you run the tests on an old device, but who does that?
ASSERT_GE(29, android_get_device_api_level());
ASSERT_GE(android_get_device_api_level(), 29);
#endif
}