diff utils/seriestables/test_series.py @ 218:4c137f16b013

Modifications pour stocker des timestamps/cpuclock avec chaque rangée créée, selon suggestion de Yoshua ce matin
author fsavard
date Wed, 10 Mar 2010 20:13:45 -0500
parents a96fa4de06d2
children e172ef73cdc5
line wrap: on
line diff
--- a/utils/seriestables/test_series.py	Wed Mar 10 16:52:22 2010 -0500
+++ b/utils/seriestables/test_series.py	Wed Mar 10 20:13:45 2010 -0500
@@ -7,6 +7,7 @@
 from tables import *
 
 from series import *
+import series
 
 
 def compare_floats(f1,f2):
@@ -144,7 +145,7 @@
     h5f_path = tempfile.NamedTemporaryFile().name
     h5f = openFile(h5f_path, "w")
 
-    desc = get_description_with_n_ints_n_floats(("col1","col2"), ("col3","col4"))
+    desc = series._get_description_with_n_ints_n_floats(("col1","col2"), ("col3","col4"))
 
     mytable = h5f.createTable('/', 'mytable', desc)