Skip to content

Commit 36345c6

Browse files
ack
1 parent 1ddbc5e commit 36345c6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/pgt_typecheck/tests/diagnostics.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ struct TestSetup<'a> {
1212
typed_identifiers: Vec<TypedIdentifier>,
1313
}
1414

15-
impl<'a> TestSetup<'a> {
15+
impl TestSetup<'_> {
1616
async fn test(self) {
1717
if let Some(setup) = self.setup {
1818
self.test_db
@@ -26,7 +26,7 @@ impl<'a> TestSetup<'a> {
2626
.set_language(&pgt_treesitter_grammar::LANGUAGE.into())
2727
.expect("Error loading sql language");
2828

29-
let schema_cache = pgt_schema_cache::SchemaCache::load(&self.test_db)
29+
let schema_cache = pgt_schema_cache::SchemaCache::load(self.test_db)
3030
.await
3131
.expect("Failed to load Schema Cache");
3232

0 commit comments

Comments
 (0)