From f62a26fe1ea62587d0569809e4d1df7ac13e6bee Mon Sep 17 00:00:00 2001 From: darshankabariya Date: Mon, 2 Feb 2026 04:34:20 +0530 Subject: [PATCH] ci improvement - 7 --- Makefile | 2 +- tests/wakunode_rest/test_rest_admin.nim | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index c0ed8a3e2..848052c78 100644 --- a/Makefile +++ b/Makefile @@ -244,7 +244,7 @@ clean: | clean-librln # Clone vendor repos for development (builds from source automatically when present) vendors: @mkdir -p vendor - @[ -d "vendor/zerokit/.git" ] || git clone --branch v0.5.1 https://github.com/vacp2p/zerokit.git vendor/zerokit + @[ -d "vendor/zerokit/.git" ] || git clone --branch v0.9.0 https://github.com/vacp2p/zerokit.git vendor/zerokit @[ -d "vendor/waku-rlnv2-contract/.git" ] || git clone https://github.com/logos-messaging/waku-rlnv2-contract.git vendor/waku-rlnv2-contract ################# diff --git a/tests/wakunode_rest/test_rest_admin.nim b/tests/wakunode_rest/test_rest_admin.nim index ef82b8dfc..10306735d 100644 --- a/tests/wakunode_rest/test_rest_admin.nim +++ b/tests/wakunode_rest/test_rest_admin.nim @@ -5,7 +5,6 @@ import testutils/unittests, presto, presto/client as presto_client, - presto /../ tests/helpers, libp2p/crypto/crypto import @@ -152,7 +151,8 @@ suite "Waku v2 Rest API - Admin": ) let - contentFiltersNode2 = @[DefaultContentTopic, ContentTopic("2"), ContentTopic("3")] + contentFiltersNode2 = @[DefaultContentTopic, ContentTopic("2"), + ContentTopic("3")] contentFiltersNode3 = @[ContentTopic("3"), ContentTopic("4")] pubsubTopicNode2 = DefaultPubsubTopic pubsubTopicNode3 = PubsubTopic("/waku/2/custom-waku/proto")