From 2c2a79d85508c8988b6d4ecfd4d0f55cff35ef11 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Wed, 8 Apr 2015 10:19:18 -0700 Subject: [PATCH] test/test.py: Fix ['Column0'] -> ['', 'Column0'] Catch up with 551d9bca (Fix DynamicLabelsField parsing algorithm., 2012-08-20). --- test/test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test.py b/test/test.py index 1934493..841cf45 100644 --- a/test/test.py +++ b/test/test.py @@ -196,7 +196,7 @@ r"""Test the igor module by loading sample files. 'data_units': '', 'dimension_units': '', 'formula': '', - 'labels': [['Column0'], [], [], []], + 'labels': [['', 'Column0'], [], [], []], 'note': 'This is a test.', 'sIndices': array([], dtype=float64), 'wData': array([ 5., 4., 3., 2., 1.], dtype=float32), @@ -459,7 +459,7 @@ r"""Test the igor module by loading sample files. 'data_units': '', 'dimension_units': '', 'formula': '', - 'labels': [['Column0'], [], [], []], + 'labels': [['', 'Column0'], [], [], []], 'note': 'This is a test.', 'sIndices': array([], dtype=float64), 'wData': array([ 5., 4., 3., 2., 1.], dtype=float32), -- 2.26.2