Fix whitespace issues

Change-Id: I7c96843996f4847f9e15022f1dc6cd85e8a092f7
diff --git a/TestON/examples/ExperimentTest/ExperimentTest.py b/TestON/examples/ExperimentTest/ExperimentTest.py
index 7630703..9e80dd2 100644
--- a/TestON/examples/ExperimentTest/ExperimentTest.py
+++ b/TestON/examples/ExperimentTest/ExperimentTest.py
@@ -1,7 +1,7 @@
 #!/usr/bin/env python
-''' 
+'''
 Created on 26-Nov-2012
-    
+
 @author: Raghav Kashyap(raghavkashyap@paxterrasolutions.com)
 
 
@@ -16,7 +16,7 @@
     GNU General Public License for more details.
 
     You should have received a copy of the GNU General Public License
-    along with TestON.  If not, see <http://www.gnu.org/licenses/>.		
+    along with TestON.  If not, see <http://www.gnu.org/licenses/>.
 
 Testing of the Experimental Mode
 
@@ -25,13 +25,13 @@
 '''
 class ExperimentTest:
     '''
-    Testing of the Experimental Mode 
-    
+    Testing of the Experimental Mode
+
     '''
-    
+
     def __init__(self):
         self.default = ""
-                
+
     def CASE1(self,main):
         '''
         Testing the configuration of the host by using checkIP functionof Mininet driver
@@ -41,8 +41,8 @@
         main.step("Host IP Checking using checkIP")
         result = main.Mininet1.checkIP(main.params['CASE1']['destination'])
         main.step("Verifying the result")
-        utilities.assert_equals(expect=main.TRUE,actual=result,onpass="Host h2 IP address configured",onfail="Host h2 IP address didn't configured") 
-        main.step("Calling Non Existing API for Experimental Mode")  
+        utilities.assert_equals(expect=main.TRUE,actual=result,onpass="Host h2 IP address configured",onfail="Host h2 IP address didn't configured")
+        main.step("Calling Non Existing API for Experimental Mode")
         testReturn = main.POX2.verify_flow(returns=main.TRUE)
         utilities.assert_equals(expect=main.TRUE,actual=testReturn,onpass="Host h2 IP address configured",onfail="Host h2 IP address didn't configured")
 
@@ -56,7 +56,7 @@
         result = main.Mininet1.pingall()
         main.step("Verifying the result")
         utilities.assert_equals(expect=main.TRUE,actual=result,onpass="All hosts are reacchable",onfail="Hosts are not reachable")
-        main.step("Calling Non Existing API for Experimental Mode")  
+        main.step("Calling Non Existing API for Experimental Mode")
         testReturn = main.Mininet1.verify_flow(returns=main.TRUE)
         utilities.assert_equals(expect=main.TRUE,actual=testReturn,onpass="Host h2 IP address configured",onfail="Host h2 IP address didn't configured")
-            
+