We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60feb96 commit 24b073aCopy full SHA for 24b073a
crates/pgt_lsp/tests/server.rs
@@ -1373,7 +1373,10 @@ async fn extends_config() -> Result<()> {
1373
// test_one extends the shared config but sets our test db
1374
let mut conf_with_db = PartialConfiguration::init();
1375
conf_with_db.merge_with(PartialConfiguration {
1376
- extends: Some(StringSet::from_iter(["../postgrestools.jsonc".to_string()])),
+ extends: Some(StringSet::from_iter([Path::new("..")
1377
+ .join("postgrestools.jsonc")
1378
+ .to_string_lossy()
1379
+ .to_string()])),
1380
db: Some(PartialDatabaseConfiguration {
1381
database: Some(
1382
test_db
0 commit comments