We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c77ab2 commit 264b311Copy full SHA for 264b311
tests/commands/test_base.py
@@ -111,11 +111,7 @@ def test_data_from_csv_column_not_found(mock_csv_file):
111
file_path = Path("tests/resources/csv_column_not_found.csv")
112
with pytest.raises(Exception) as exc_info:
113
Command.data_from_csv(file_path, "NonExistentColumn")
114
-<<<<<<< HEAD
115
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)
119
120
121
@pytest.fixture
0 commit comments