Skip to content

Commit 05f44a7

Browse files
author
Zoran Cvetkov
committed
debug printouts
1 parent 8093f74 commit 05f44a7

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/tests/integration_tests.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -823,6 +823,7 @@ async fn test_subgraph_grafting(ctx: TestContext) -> anyhow::Result<()> {
823823
.await
824824
.unwrap();
825825
assert_eq!(None, resp.get("errors"));
826+
println!("{}. resp: {:?}", block_number, resp);
826827
resp["data"]["hash"].as_str().map(|s| s.to_owned())
827828
}
828829

@@ -863,6 +864,7 @@ async fn test_subgraph_grafting(ctx: TestContext) -> anyhow::Result<()> {
863864
"blockHash": block_hash,
864865
});
865866
let resp = Subgraph::query_with_vars(FETCH_POI, vars).await?;
867+
println!("{}. resp: {:?}", i, resp);
866868
assert_eq!(None, resp.get("errors"));
867869
assert!(resp["data"]["proofOfIndexing"].is_string());
868870
let poi = resp["data"]["proofOfIndexing"].as_str().unwrap();

0 commit comments

Comments
 (0)