[Scipy-svn] r2719 - trunk/Lib/sandbox/timeseries/io/fame/tests

scipy-svn at scipy.org scipy-svn at scipy.org
Thu Feb 15 16:54:38 EST 2007


Author: mattknox_ca
Date: 2007-02-15 15:54:35 -0600 (Thu, 15 Feb 2007)
New Revision: 2719

Modified:
   trunk/Lib/sandbox/timeseries/io/fame/tests/test_fame.py
Log:


Modified: trunk/Lib/sandbox/timeseries/io/fame/tests/test_fame.py
===================================================================
--- trunk/Lib/sandbox/timeseries/io/fame/tests/test_fame.py	2007-02-15 21:54:01 UTC (rev 2718)
+++ trunk/Lib/sandbox/timeseries/io/fame/tests/test_fame.py	2007-02-15 21:54:35 UTC (rev 2719)
@@ -392,7 +392,6 @@
         
     def _test_whats(self):
         "test whats method"
-        
         # just make sure it doesn't crash for now
         what_dict = self.db.whats('$tser_float32')
         
@@ -408,18 +407,14 @@
         self.db.remove(['$cser_1', '$cser_2'])
         assert(not self.db.exists('$cser_1'))
         assert(not self.db.exists('$cser_2'))
-        
         self.db.remove('$cser_1', must_exist=False)
 
-        
     def _test_wildlist(self):
         "test wildlist method"
         wl1 = self.db.wildlist("$cser_?")
         wl2 = self.db.wildlist("$cser_?", wildonly=True)
-        
         res1 = sorted(["$CSER_"+x.upper() for x in list(data['cser'])])
         res2 = sorted([x.upper() for x in list(data['cser'])])
-        
         assert_equal(wl1, res1)
         assert_equal(wl2, res2)
         
@@ -433,7 +428,6 @@
         self.db.restore()
         assert(self.db.exists('$tser_float32'))
 
-    
     def tearDown(self):
         self.db.close()
 




More information about the Scipy-svn mailing list