Skip to content

Commit

Permalink
remove dbg! macro
Browse files Browse the repository at this point in the history
  • Loading branch information
kariy committed Jul 3, 2024
1 parent f134883 commit 47bc3c9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions crates/dojo-world/src/metadata_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -173,10 +173,8 @@ async fn get_full_dojo_metadata_from_workspace() {

let artifacts = get_artifacts_from_manifest(&manifest_dir);

dbg!(&artifacts);
for (abi_subdir, name) in artifacts {
let resource = dojo_metadata.resources_artifacts.get(&name);
dbg!(&dojo_metadata.resources_artifacts);
assert!(resource.is_some(), "bad resource metadata for {}", name);
let resource = resource.unwrap();

Expand Down
2 changes: 0 additions & 2 deletions crates/torii/grpc/src/server/tests/entities_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,6 @@ async fn test_entities_queries() {
prepare_migration(source_project_dir, target_path, dojo_metadata.skip_migration).unwrap();
migration.resolve_variable(migration.world_address().unwrap()).unwrap();

dbg!(&migration);

let sequencer =
TestSequencer::start(SequencerConfig::default(), get_default_test_starknet_config()).await;
let provider = Arc::new(JsonRpcClient::new(HttpTransport::new(sequencer.url())));
Expand Down

0 comments on commit 47bc3c9

Please sign in to comment.