Skip to content

Commit 8c77ab2

Browse files
committed
Add update
1 parent d4b8986 commit 8c77ab2

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/commands/test_base.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,11 @@ def test_data_from_csv_column_not_found(mock_csv_file):
111111
file_path = Path("tests/resources/csv_column_not_found.csv")
112112
with pytest.raises(Exception) as exc_info:
113113
Command.data_from_csv(file_path, "NonExistentColumn")
114+
<<<<<<< HEAD
114115
assert "Column NonExistentColumn not found on tests/resources/csv_column_not_found.csv" in str(exc_info.value)
116+
=======
117+
assert f"Column NonExistentColumn not found on {file_path}" in str(exc_info.value)
118+
>>>>>>> c347dd2 (Add update)
115119

116120

117121
@pytest.fixture

0 commit comments

Comments
 (0)