Skip to content

Commit

Permalink
fix test again
Browse files Browse the repository at this point in the history
  • Loading branch information
Rashad Alston authored and Rashad Alston committed May 24, 2023
1 parent d987efd commit 1ff822a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file not shown.
4 changes: 2 additions & 2 deletions packages/fuel-indexer-tests/tests/e2e/graphql_api_postgres.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ async fn test_can_return_query_response_with_all_fields_required_postgres() {
let resp = client
.post("http://127.0.0.1:29987/api/graph/fuel_indexer_test/index1")
.header(CONTENT_TYPE, "application/graphql".to_owned())
.body(r#"{ "query": "query { block { id height timestamp }}" }"#)
.body(r#"{ "query": "query { blockentity { id height timestamp }}" }"#)
.send()
.await
.unwrap();
Expand Down Expand Up @@ -142,7 +142,7 @@ async fn test_can_return_nested_query_response_with_implicit_foreign_keys_postgr
let resp = client
.post("http://127.0.0.1:29987/api/graph/fuel_indexer_test/index1")
.header(CONTENT_TYPE, "application/graphql".to_owned())
.body(r#"{ "query": "query { tx { block { id height } id timestamp } }" }"#)
.body(r#"{ "query": "query { txentity { block { id height } id timestamp } }" }"#)
.send()
.await
.unwrap();
Expand Down

0 comments on commit 1ff822a

Please sign in to comment.