diff --git a/tests/node/test_wakunode_relay_rln.nim b/tests/node/test_wakunode_relay_rln.nim index 9b4515005..823fde4b5 100644 --- a/tests/node/test_wakunode_relay_rln.nim +++ b/tests/node/test_wakunode_relay_rln.nim @@ -128,22 +128,6 @@ suite "Waku RlnRelay - End to End - Static": await allFutures(client.stop(), server.stop()) suite "Mount": - asyncTest "Can't mount if relay is not mounted": - # Given Relay and RLN are not mounted - check: - server.wakuRelay == nil - server.rln == nil - - # When RlnRelay is mounted - let catchRes = catch: - await server.setupStaticRln(1) - - # Then Relay and RLN are not mounted,and the process fails - check: - server.wakuRelay == nil - server.rln == nil - catchRes.error()[].msg == "WakuRelay protocol is not mounted, cannot mount Rln" - asyncTest "Pubsub topics subscribed before mounting RlnRelay are added to it": # Given the node enables Relay and Rln while subscribing to a pubsub topic await server.setupRelayWithStaticRln(1.uint, @[pubsubTopic])