diff options
author | Adnan Begovic <adnan@cyngn.com> | 2016-01-19 13:43:16 -0800 |
---|---|---|
committer | Adnan Begovic <adnan@cyngn.com> | 2016-01-19 13:43:16 -0800 |
commit | 80001bff72e8f73d44223655d6d2f33d674b134d (patch) | |
tree | 3f0a6044ab92e64d54ed0691ed0a51b189643314 /tests/src | |
parent | 735333ce4a08275dd51953aed6193e9f0ce7c172 (diff) | |
download | vendor_cmsdk-80001bff72e8f73d44223655d6d2f33d674b134d.zip vendor_cmsdk-80001bff72e8f73d44223655d6d2f33d674b134d.tar.gz vendor_cmsdk-80001bff72e8f73d44223655d6d2f33d674b134d.tar.bz2 |
cmsdk: Fix BuildTests. Bump parcelable version.
Change-Id: I3084acfa25ca6bd6f5a058995906a050e243a4c9
Diffstat (limited to 'tests/src')
-rw-r--r-- | tests/src/org/cyanogenmod/tests/versioning/unit/BuildTest.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/src/org/cyanogenmod/tests/versioning/unit/BuildTest.java b/tests/src/org/cyanogenmod/tests/versioning/unit/BuildTest.java index 2cc76b7..3e0be19 100644 --- a/tests/src/org/cyanogenmod/tests/versioning/unit/BuildTest.java +++ b/tests/src/org/cyanogenmod/tests/versioning/unit/BuildTest.java @@ -38,20 +38,20 @@ public class BuildTest extends AndroidTestCase { @SmallTest public void testSdkApiLevelCurrent() { - assertEquals(Build.CM_VERSION_CODES.DRAGON_FRUIT, Build.CM_VERSION.SDK_INT); + assertEquals(Build.PARCELABLE_VERSION, Build.CM_VERSION.SDK_INT); } @SmallTest public void testSdkApiLevelCanMatch() { String apiName = Build.getNameForSDKInt(Build.CM_VERSION.SDK_INT); assertNotNull(apiName); - assertEquals(Build.getNameForSDKInt(Build.CM_VERSION_CODES.DRAGON_FRUIT), apiName); + assertEquals(Build.getNameForSDKInt(Build.PARCELABLE_VERSION), apiName); } @SmallTest public void testSdkApiLevelSkippedIfGreaterThanAllowed() { int i = 0; - if (Build.CM_VERSION.SDK_INT > Build.CM_VERSION_CODES.DRAGON_FRUIT + 1) { + if (Build.CM_VERSION.SDK_INT > Build.PARCELABLE_VERSION + 1) { i++; } assertEquals(0, i); |