Skip to content

Commit

Permalink
remove unnecessary addition
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielmer committed Jan 22, 2025
1 parent a63b84c commit 00ed425
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/wakunode_rest/test_rest_store.nim
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,7 @@ procSuite "Waku Rest API - Store v3":
let messageHash = computeMessageHash(DefaultPubsubTopic, wakuMsg)
let restMsgHash = some(messageHash.toRestStringWakuMessageHash())

let parsedMsgHashRes: Result[Option[WakuMessageHash], system.string] =
parseHash(restMsgHash)
let parsedMsgHashRes = parseHash(restMsgHash)
assert parsedMsgHashRes.isOk(), $parsedMsgHashRes.error

check:
Expand Down

0 comments on commit 00ed425

Please sign in to comment.