summaryrefslogtreecommitdiffstats
path: root/jack/tests
diff options
context:
space:
mode:
Diffstat (limited to 'jack/tests')
-rw-r--r--jack/tests/com/android/jack/VersionTest.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/jack/tests/com/android/jack/VersionTest.java b/jack/tests/com/android/jack/VersionTest.java
index 73a13369..56ba09f7 100644
--- a/jack/tests/com/android/jack/VersionTest.java
+++ b/jack/tests/com/android/jack/VersionTest.java
@@ -19,6 +19,9 @@ package com.android.jack;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
+import com.android.sched.util.SubReleaseKind;
+import com.android.sched.util.Version;
+
import org.junit.Test;
public class VersionTest {
@@ -31,8 +34,6 @@ public class VersionTest {
assertNotNull(version.getVersion());
assertNotNull(version.getVerboseVersion());
assertNotNull(version.getReleaseName());
- assertTrue(version.getReleaseCode() > 0);
- assertTrue(version.getSubReleaseCode() > 0);
if (version.getBuildId() == null || version.getCodeBase() == null) {
assertTrue(version.getSubReleaseKind() == SubReleaseKind.ENGINEERING);