Skip to content

Commit 93ce7a0

Browse files
RichardHitierjeandet
authored andcommitted
Fix HAPI compliant csv header
1 parent 96100e3 commit 93ce7a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_hapi_codecs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,4 +202,4 @@ def test_hapi_csv_precision(self):
202202
df = pd.read_csv(tmp.name, comment='#', sep=',', header=None, skiprows=0, parse_dates=[0], index_col=0)
203203
self.assertAlmostEqual(float(df.iloc[0, 0]), float(imf_data.values[0, 0]), places=3)
204204
self.assertAlmostEqual(float(df.iloc[0, 1]), float(imf_data.values[0, 1]), places=3)
205-
self.assertAlmostEqual(float(df.iloc[0, 2]), float(imf_data.values[0, 2]), places=3)
205+
self.assertAlmostEqual(float(df.iloc[0, 2]), float(imf_data.values[0, 2]), places=3)

0 commit comments

Comments
 (0)