fix CtsCarrierApiTestCases for device of non-support voice

For the device which has SMS and data comm but does not
support the voice call, therefore the phoneType is set
to PHONE_TYPE_NONE.
This test should not check the value of phoneType.

Bug: 160623579
Test: testSimCardPresent pass
Change-Id: Id108dae3e626982b131064453f71b0f9c75e4690
diff --git a/tests/tests/carrierapi/src/android/carrierapi/cts/CarrierApiTest.java b/tests/tests/carrierapi/src/android/carrierapi/cts/CarrierApiTest.java
index 416f0eb..b98e6a9 100644
--- a/tests/tests/carrierapi/src/android/carrierapi/cts/CarrierApiTest.java
+++ b/tests/tests/carrierapi/src/android/carrierapi/cts/CarrierApiTest.java
@@ -210,8 +210,7 @@
     }
 
     private boolean isSimCardPresent() {
-        return mTelephonyManager.getPhoneType() != TelephonyManager.PHONE_TYPE_NONE &&
-                mTelephonyManager.getSimState() != TelephonyManager.SIM_STATE_ABSENT;
+        return mTelephonyManager.getSimState() != TelephonyManager.SIM_STATE_ABSENT;
     }
 
     private String getCertHash(String pkgName) {