File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ test_expect_success "docker image build succeeds" '
3636'
3737
3838test_expect_success " write init scripts" '
39- echo "ipfs config Reprovider.Strategy Bar" > 001.sh &&
39+ echo "ipfs config Mounts.IPFS Bar" > 001.sh &&
4040 echo "ipfs config Pubsub.Router Qux" > 002.sh &&
4141 chmod +x 002.sh
4242'
@@ -65,7 +65,7 @@ test_expect_success "check that init scripts were run correctly and in the corre
6565
6666test_expect_success " check that init script configs were applied" '
6767 echo Bar > expected &&
68- docker exec "$DOC_ID" ipfs config Reprovider.Strategy > actual &&
68+ docker exec "$DOC_ID" ipfs config Mounts.IPFS > actual &&
6969 test_cmp actual expected &&
7070 echo Qux > expected &&
7171 docker exec "$DOC_ID" ipfs config Pubsub.Router > actual &&
Original file line number Diff line number Diff line change @@ -11,12 +11,12 @@ test_description="Test user-provided config values"
1111test_init_ipfs
1212
1313test_expect_success " bootstrap doesn't overwrite user-provided config keys (top-level)" '
14- ipfs config Reprovider.Strategy >previous &&
15- ipfs config Reprovider.Strategy foo &&
14+ ipfs config Identity.PeerID >previous &&
15+ ipfs config Identity.PeerID foo &&
1616 ipfs bootstrap rm --all &&
1717 echo "foo" >expected &&
18- ipfs config Reprovider.Strategy >actual &&
19- ipfs config Reprovider.Strategy $(cat previous) &&
18+ ipfs config Identity.PeerID >actual &&
19+ ipfs config Identity.PeerID $(cat previous) &&
2020 test_cmp expected actual
2121'
2222
You can’t perform that action at this time.
0 commit comments