We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0b7fbd commit 42c66cdCopy full SHA for 42c66cd
2 files changed
config/config_test.go
@@ -3,6 +3,7 @@ package config
3
import (
4
"reflect"
5
"testing"
6
+ //. "github.com/mch1307/gomotics/config"
7
)
8
9
func TestInitialize(t *testing.T) {
@@ -11,7 +12,7 @@ func TestInitialize(t *testing.T) {
11
12
cfg.NhcConfig.Port = 8000
13
cfg.ServerConfig.ListenPort = 8081
14
cfg.ServerConfig.LogLevel = "DEBUG"
- cfg.ServerConfig.LogPath = "/tmp"
15
+ cfg.ServerConfig.LogPath = "."
16
17
tests := []struct {
18
name string
config/test.toml
@@ -1,7 +1,7 @@
1
[server]
2
ListenPort = 8081
LogLevel = "DEBUG"
-LogPath = "/tmp"
+LogPath = "."
[nhc]
host = "localhost"
0 commit comments