Skip to content

Commit

Permalink
Debug failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
lealobanov committed Nov 12, 2024
1 parent 4981249 commit b5c808e
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand All @@ -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()

Expand Down

0 comments on commit b5c808e

Please sign in to comment.