Skip to content

Commit

Permalink
Fix a test
Browse files Browse the repository at this point in the history
  • Loading branch information
thombashi committed Aug 30, 2020
1 parent f4438eb commit 2cce8cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/writer/text/test_numpy_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,14 +151,14 @@ def test_normal(self, capsys, table, indent, header, value, expected):
for data in null_test_data_list
],
)
def test_exception(self, table, indent, header, value, expected):
def test_exception_null(self, table, indent, header, value, expected):
writer = table_writer_class()
writer.table_name = table
writer.set_indent_level(indent)
writer.headers = header
writer.value_matrix = value

assert writer.write_table() == ""
assert writer.dumps() == ""

@pytest.mark.parametrize(
["table", "indent", "header", "value", "expected"],
Expand Down

0 comments on commit 2cce8cb

Please sign in to comment.