From af0c5c6d286d86fcb9cc6f83513e46b2c7bb156f Mon Sep 17 00:00:00 2001 From: guillaumemichel Date: Thu, 30 Jan 2025 16:39:28 +0100 Subject: [PATCH] docker sharness --- test/sharness/t0002-docker-image.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/sharness/t0002-docker-image.sh b/test/sharness/t0002-docker-image.sh index dfe6bb022fb..8812c277a74 100755 --- a/test/sharness/t0002-docker-image.sh +++ b/test/sharness/t0002-docker-image.sh @@ -37,7 +37,7 @@ test_expect_success "docker image build succeeds" ' test_expect_success "write init scripts" ' echo "ipfs config Provider.Strategy Bar" > 001.sh && - echo "ipfs config Datastore.Path Qux" > 002.sh && + echo "ipfs config Pubsub.Router Qux" > 002.sh && chmod +x 002.sh ' @@ -68,7 +68,7 @@ test_expect_success "check that init script configs were applied" ' docker exec "$DOC_ID" ipfs config Provider.Strategy > actual && test_cmp actual expected && echo Qux > expected && - docker exec "$DOC_ID" ipfs config Datastore.Path > actual && + docker exec "$DOC_ID" ipfs config Pubsub.Router > actual && test_cmp actual expected '