Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
geoff-vball committed Dec 19, 2023
1 parent b4b64c7 commit a22ffba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/flows/block_hash_publish_receive.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ func BlockHashPublishReceive(network interfaces.Network) {
publishLog, err := utils.GetEventFromLogs(receipt.Logs, publisher.ParsePublishBlockHash)
Expect(err).Should(BeNil())
Expect(publishLog.BlockHeight.Uint64()).Should(Equal(expectedBlockNumberU64))
Expect(publishLog.BlockHash).Should(Equal(expectedBlockHash))
Expect(publishLog.BlockHash[:]).Should(Equal(expectedBlockHash[:]))

// relay publication
network.RelayMessage(ctx, receipt, subnetAInfo, subnetBInfo, true)
Expand Down

0 comments on commit a22ffba

Please sign in to comment.