delete git pull and mci part

Change-Id: Ia6b02a8ad3296da7d3596efb651344f044355f3e
diff --git a/TestON/tests/USECASE_SdnipFunction/USECASE_SdnipFunction.py b/TestON/tests/USECASE_SdnipFunction/USECASE_SdnipFunction.py
index 9e160d3..41bad86 100644
--- a/TestON/tests/USECASE_SdnipFunction/USECASE_SdnipFunction.py
+++ b/TestON/tests/USECASE_SdnipFunction/USECASE_SdnipFunction.py
@@ -105,7 +105,7 @@
                                 actual = uninstallResult,
                                 onpass = "Uninstall ONOS succeeded",
                                 onfail = "Uninstall ONOS failed" )
-
+        '''
         main.step( "Git pull" )
         gitPullResult = main.ONOSbench.gitPull()
         main.log.info( "gitPullResult" )
@@ -127,6 +127,7 @@
              main.log.warn( "Did not pull new code so skipping mvn " +
                             "clean install" )
              mciResult = main.TRUE
+        '''
 
         main.ONOSbench.getVersion( report = True )
 
@@ -161,7 +162,7 @@
                          onfail = "ONOS CLI is NOT ready" )
 
         caseResult = ( cellResult and verifyResult and
-                       gitPullResult2 and mciResult and packageResult and
+                       packageResult and
                        onos1InstallResult and onos1UpResult and cliResult )
 
         utilities.assert_equals( expect = main.TRUE, actual = caseResult,