Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
ok
  • Loading branch information
juleswritescode committed Aug 31, 2025
commit 2d9594eac7575011c6814612e8b03d394bf7d0e6
2 changes: 1 addition & 1 deletion crates/pgt_cli/tests/assert_cmd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ fn test_cli_check_command() {

let test_sql_path = PathBuf::from("tests/fixtures/test.sql");

cmd.args(["check", test_sql_path.to_str().unwrap()])
cmd.args(["check", "--disable-db", test_sql_path.to_str().unwrap()])
.assert()
.failure()
.stdout(predicate::str::contains("Found 1 error"));
Expand Down
2 changes: 1 addition & 1 deletion crates/pgt_hover/tests/hover_integration_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -276,5 +276,5 @@ async fn shortens_lengthy_functions(test_db: PgPool) {
QueryWithCursorPosition::cursor_marker()
);

test_hover_at_cursor("lenghty function", query, Some(setup), &test_db).await;
test_hover_at_cursor("lenghty_function", query, Some(setup), &test_db).await;
}
Loading