diff --git a/packages/fuel-indexer-tests/components/indices/simple-wasm/simple_wasm.wasm b/packages/fuel-indexer-tests/components/indices/simple-wasm/simple_wasm.wasm index 529ef9118..470df57e8 100644 Binary files a/packages/fuel-indexer-tests/components/indices/simple-wasm/simple_wasm.wasm and b/packages/fuel-indexer-tests/components/indices/simple-wasm/simple_wasm.wasm differ diff --git a/packages/fuel-indexer-tests/tests/e2e/graphql_api_postgres.rs b/packages/fuel-indexer-tests/tests/e2e/graphql_api_postgres.rs index b6c74b5fc..a982f0f7f 100644 --- a/packages/fuel-indexer-tests/tests/e2e/graphql_api_postgres.rs +++ b/packages/fuel-indexer-tests/tests/e2e/graphql_api_postgres.rs @@ -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(); @@ -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();