kubo/fuse/ipns
Christopher Buesser 93806601d1 Test Fix: nil pointer error for core.NewNode
This commit fixes the errors resulting from passing a nil pointer to the
core.NewNode function in TestExternalUnmmount and setupIpnsTest.

In the previous nil's place a &core.BuildCfg{} is now passed.

Both changes follow the same pattern:

```diff
-  node, err = core.NewNode(context.Background(), nil)
+  node, err = core.NewNode(context.Background(), &core.BuildCfg{})
```

 On branch go-test-fix
 Changes to be committed:
	modified:   fuse/ipns/ipns_test.go
	modified:   fuse/node/mount_test.go
License: MIT
Signed-off-by: Chris Buesser <christopher.buesser@gmail.com>
2019-05-02 19:30:36 -04:00
..
common.go gx: unrewrite 2019-03-05 18:33:56 +01:00
ipns_test.go Test Fix: nil pointer error for core.NewNode 2019-05-02 19:30:36 -04:00
ipns_unix.go Move option parsing to BuildCfg; fix imports 2019-04-17 16:56:27 -07:00
link_unix.go gx: unrewrite 2019-03-05 18:33:56 +01:00
mount_unix.go Fix goprocess / lifecycle / ctx relations 2019-04-17 16:56:27 -07:00