From b5c808ea276bad4e945f86affadca1b296714ce6 Mon Sep 17 00:00:00 2001 From: Lea Lobanov Date: Tue, 12 Nov 2024 23:55:20 +0900 Subject: [PATCH] Debug failing test --- .../org/onflow/flow/sdk/impl/AsyncFlowAccessApiImplTest.kt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/sdk/src/test/kotlin/org/onflow/flow/sdk/impl/AsyncFlowAccessApiImplTest.kt b/sdk/src/test/kotlin/org/onflow/flow/sdk/impl/AsyncFlowAccessApiImplTest.kt index 47b16ad..0d05d8b 100644 --- a/sdk/src/test/kotlin/org/onflow/flow/sdk/impl/AsyncFlowAccessApiImplTest.kt +++ b/sdk/src/test/kotlin/org/onflow/flow/sdk/impl/AsyncFlowAccessApiImplTest.kt @@ -488,7 +488,8 @@ class AsyncFlowAccessApiImplTest { ) val successFlowId = FlowId.of("id_success".toByteArray()) - val successRequest = Access.GetSystemTransactionResultRequest.newBuilder() + val successRequest = Access.GetSystemTransactionResultRequest + .newBuilder() .setBlockId(successFlowId.byteStringValue) .build() @@ -502,7 +503,8 @@ class AsyncFlowAccessApiImplTest { @Test fun `test getSystemTransactionResult failure`() { val failureFlowId = FlowId.of("id_failure".toByteArray()) - val failureRequest = Access.GetSystemTransactionResultRequest.newBuilder() + val failureRequest = Access.GetSystemTransactionResultRequest + .newBuilder() .setBlockId(failureFlowId.byteStringValue) .build()