Skip to content

Commit f8ff42b

Browse files
those were invalid filenames
1 parent 308e34f commit f8ff42b

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

crates/pgt_hover/tests/hover_integration_tests.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -535,27 +535,27 @@ async fn no_hover_results_over_params(test_db: PgPool) {
535535
"select * from users where name = $n{}ame;",
536536
QueryWithCursorPosition::cursor_marker()
537537
);
538-
test_hover_at_cursor("$-param", query, None, &test_db).await;
538+
test_hover_at_cursor("dollar-param", query, None, &test_db).await;
539539
}
540540
{
541541
let query = format!(
542542
"select * from users where name = :n{}ame;",
543543
QueryWithCursorPosition::cursor_marker()
544544
);
545-
test_hover_at_cursor(":-param", query, None, &test_db).await;
545+
test_hover_at_cursor("colon-param", query, None, &test_db).await;
546546
}
547547
{
548548
let query = format!(
549549
"select * from users where name = @n{}ame;",
550550
QueryWithCursorPosition::cursor_marker()
551551
);
552-
test_hover_at_cursor("@-param", query, None, &test_db).await;
552+
test_hover_at_cursor("at-param", query, None, &test_db).await;
553553
}
554554
{
555555
let query = format!(
556556
"select * from users where name = ?n{}ame;",
557557
QueryWithCursorPosition::cursor_marker()
558558
);
559-
test_hover_at_cursor("?-param", query, None, &test_db).await;
559+
test_hover_at_cursor("questionmark-param", query, None, &test_db).await;
560560
}
561561
}

0 commit comments

Comments
 (0)