Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

Commit d937fc1

Browse files
committed
fix: test setting boolean configs keys on boolean fields
1 parent 586fba2 commit d937fc1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/config/set.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -74,15 +74,15 @@ module.exports = (createCommon, options) => {
7474

7575
it('should set a boolean', async () => {
7676
const value = true
77-
const key = 'Datastore.Path'
77+
const key = 'Discovery.MDNS.Enabled'
7878

7979
await ipfs.config.set(key, value)
8080
expect(await ipfs.config.get(key)).to.equal(value)
8181
})
8282

8383
it('should set the other boolean', async () => {
8484
const value = false
85-
const key = 'Datastore.Path'
85+
const key = 'Discovery.MDNS.Enabled'
8686

8787
await ipfs.config.set(key, value)
8888
expect(await ipfs.config.get(key)).to.equal(value)

0 commit comments

Comments
 (0)