Skip to content

Commit

Permalink
LS: Fix handling of TEST_CLASS_HASH after #5219
Browse files Browse the repository at this point in the history
commit-id:0f2ff5c3
  • Loading branch information
mkaput committed Mar 20, 2024
1 parent f446cb4 commit dbd07e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/cairo-lang-language-server/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ fn init_logging() -> Option<impl Drop> {

fn configured_db() -> RootDatabase {
let db = RootDatabase::builder()
.with_cfg(CfgSet::from_iter([Cfg::name("test")]))
.with_cfg(CfgSet::from_iter([Cfg::name("test"), Cfg::kv("target", "test")]))
.with_plugin_suite(starknet_plugin_suite())
.with_plugin_suite(test_plugin_suite())
.build()
Expand Down

0 comments on commit dbd07e9

Please sign in to comment.