diff --git a/tests/test_cli.py b/tests/test_cli.py index 6791fcb..40eeb09 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -207,7 +207,7 @@ def test_add_column_error_invalid_type(db_path): cli.cli, ["add-column", db_path, "dogs", "blah", "badtype"] ) assert 0 != result.exit_code - assert 'Invalid value for "col_type"' in result.output + assert 'invalid choice: badtype' in result.output def test_enable_fts(db_path):