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 b344a72 commit 64252d7Copy full SHA for 64252d7
tests/commands/test_base.py
@@ -111,7 +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
- assert f"Column NonExistentColumn not found on {file_path}" in str(exc_info.value)
+ assert "Column NonExistentColumn not found on tests/resources/csv_column_not_found.csv" in str(exc_info.value)
115
116
117
@pytest.fixture
0 commit comments