From: W. Trevor King Date: Wed, 8 Apr 2015 17:19:18 +0000 (-0700) Subject: test/test.py: Fix ['Column0'] -> ['', 'Column0'] X-Git-Tag: v0.3~5 X-Git-Url: http://git.tremily.us/?p=igor.git;a=commitdiff_plain;h=2c2a79d85508c8988b6d4ecfd4d0f55cff35ef11 test/test.py: Fix ['Column0'] -> ['', 'Column0'] Catch up with 551d9bca (Fix DynamicLabelsField parsing algorithm., 2012-08-20). --- 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),