summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQuentin Perret <qperret@google.com>2020-05-04 10:29:29 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2020-05-04 10:29:29 +0000
commit13d1388d9f699d86425203bc73173f6ba74fd407 (patch)
treec8e7840239f5373bdc32b0da581fa27c726c1a8b
parentd98c88562b76d2ef3bc7cb044357961375000ae7 (diff)
parent4420d4c01984f2ca73858ecd85816249934fe152 (diff)
Merge "Fix argument order in api level test" am: 04e4d35cd7 am: 4420d4c019
Change-Id: I05f6e6f49be0f46457fcb8a5c859af83cd06aa4a
-rw-r--r--tests/android_get_device_api_level.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/android_get_device_api_level.cpp b/tests/android_get_device_api_level.cpp
index 066240456..9bd6b3af9 100644
--- a/tests/android_get_device_api_level.cpp
+++ b/tests/android_get_device_api_level.cpp
@@ -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
}