Skip to content

Commit

Permalink
test: Add test for mismatch in number of schema fields vs data columns
Browse files Browse the repository at this point in the history
  • Loading branch information
adigitoleo committed Mar 25, 2024
1 parent 180a275 commit 782cf0b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/test_scsv.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,9 @@ def test_save_scsv_errors():
_io.save_scsv(temp.name, schema, [foo])
foo = [True]
_io.save_scsv(temp.name, schema, [foo])
foo = [1, 2, 3]
bar = [1, 2, 3]
_io.save_scsv(temp.name, schema, [foo, bar])


def test_read_Kaminski2004():
Expand Down

0 comments on commit 782cf0b

Please sign in to comment.