Skip to content

Commit

Permalink
chore(blockifier): use suggested function to get dir
Browse files Browse the repository at this point in the history
  • Loading branch information
ArniStarkware committed Nov 21, 2024
1 parent 74b80c4 commit 079ab62
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion crates/blockifier/src/versioned_constants_test.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
use glob::{glob, Paths};
use pretty_assertions::assert_eq;
use starknet_api::test_utils::path_in_resources;

use super::*;

Expand All @@ -8,7 +9,8 @@ use super::*;

/// Returns all JSON files in the resources directory (should be all versioned constants files).
fn all_jsons_in_dir() -> Paths {
glob(format!("{}/resources/*.json", env!("CARGO_MANIFEST_DIR")).as_str()).unwrap()
let pattern = path_in_resources("");
glob(format!("{}/*.json", pattern.display()).as_str()).unwrap()
}

#[test]
Expand Down

0 comments on commit 079ab62

Please sign in to comment.