kubo/fuse/node
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
..
mount_darwin.go Fix imported and not used: "os" 2019-03-27 14:37:15 +11:00
mount_nofuse.go fix macos build when fuse is enabled 2019-04-18 18:11:38 -07:00
mount_test.go Test Fix: nil pointer error for core.NewNode 2019-05-02 19:30:36 -04:00
mount_unix.go fix macos build when fuse is enabled 2019-04-18 18:11:38 -07:00
mount_windows.go Mounts detect unmounts and track mount state. 2016-02-07 19:54:59 -08:00