pincode removed from pan screen

This commit is contained in:
Sidharth Bamba
2021-09-29 10:22:33 +05:30
parent 9c4abf002a
commit 4f25c2b0dd
2 changed files with 1 additions and 5 deletions

View File

@@ -37,11 +37,8 @@ RUN bash -c " \
if [ $FLAVOR = E2ETEST ] ; then \
./gradlew clean :app:testDevDebugUnitTest --tests com.naviapp.CustomerDataCleanup \
echo 'status: $?' ; \
if [ $? -ne 0 ] ; then exit 1 ; fi ; \
./gradlew clean :app:testDevDebugUnitTest --tests com.naviapp.CustomerDataCleanup; \
./gradlew clean :app:testDevDebugUnitTest --tests com.naviapp.BrowserStackInit -PtestType=\"e2e\" executeE2ETests; \
if [ $? -ne 0 ] ; then exit 1 ; fi ; \
./gradlew clean :app:testDevDebugUnitTest --tests com.naviapp.MockDataCleanup; \
\
elif [ $FLAVOR = DEV ] ; then \

View File

@@ -71,7 +71,6 @@ class PanController : Controller() {
verifyOnThisActivity()
enterAge(panDetails.ageDay, panDetails.ageMonth, panDetails.ageYear)
enterPinCode(panDetails.pincode)
Log.i(TAG, "Completed basic details on profile page")
return this
}