diff options
Diffstat (limited to 'tests/test_tableflow.py')
-rw-r--r-- | tests/test_tableflow.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/test_tableflow.py b/tests/test_tableflow.py index c53437b..41f3620 100644 --- a/tests/test_tableflow.py +++ b/tests/test_tableflow.py @@ -11,7 +11,7 @@ def test_table_load_noinputs(): def test_wrong_comment_in_table_file_to_load(): - with pytest.raises(Exception) as exc_info: + with pytest.raises(Exception): # should raise ParserError tblfl.loadInOutTables( inputFileName="tests/tableflow_test_data/tableIn1.csv", @@ -113,7 +113,6 @@ def test_reflowTable(): outputFileName="tests/tableflow_test_data/tableOut1pariallyProcessed.csv", comment="#", ) - tOutRef = tOut.copy() # check for warnings with pytest.warns(UserWarning): tblfl.reflowTable(tIn, tOut) |