Skip to content

Commit c369ea5

Browse files
committed
fix test
1 parent b3198dd commit c369ea5

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

test/unit_test/_cli/pack_test.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ def test_if_load_returns_wrong_type_then_error_contains_meaningful_info():
6363
result = invoke_dac_pack(load=get_path_to_return_wrong_type_load().as_posix())
6464
assert result.exit_code != 0
6565
error_message = str(result.exception)
66-
assert "expected pd.DataFrame" in error_message
66+
assert "Backend not found for backend" in error_message
67+
assert "pandas" in error_message
6768

6869

6970
def test_if_load_miss_credentials_then_error_contains_meaningful_info():

0 commit comments

Comments
 (0)