Skip to content

Commit 264b311

Browse files
committed
Fix
1 parent 8c77ab2 commit 264b311

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

tests/commands/test_base.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -111,11 +111,7 @@ 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
115114
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)
119115

120116

121117
@pytest.fixture

0 commit comments

Comments
 (0)