Skip to content

Commit 64252d7

Browse files
committed
- Add test for channel_info command;
- Add update channel_info file; - fix test_base
1 parent b344a72 commit 64252d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/commands/test_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +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-
assert f"Column NonExistentColumn not found on {file_path}" in str(exc_info.value)
114+
assert "Column NonExistentColumn not found on tests/resources/csv_column_not_found.csv" in str(exc_info.value)
115115

116116

117117
@pytest.fixture

0 commit comments

Comments
 (0)