mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-15 23:06:38 +00:00
Fix path join (#5762)
This commit is contained in:
@@ -25,10 +25,10 @@ func TestServiceParamsPath(t *testing.T) {
|
|||||||
t.Cleanup(func() { configs.StateDir = original })
|
t.Cleanup(func() { configs.StateDir = original })
|
||||||
|
|
||||||
configs.StateDir = "/var/lib/netbird"
|
configs.StateDir = "/var/lib/netbird"
|
||||||
assert.Equal(t, "/var/lib/netbird/service.json", serviceParamsPath())
|
assert.Equal(t, filepath.Join("/var/lib/netbird", "service.json"), serviceParamsPath())
|
||||||
|
|
||||||
configs.StateDir = "/custom/state"
|
configs.StateDir = "/custom/state"
|
||||||
assert.Equal(t, "/custom/state/service.json", serviceParamsPath())
|
assert.Equal(t, filepath.Join("/custom/state", "service.json"), serviceParamsPath())
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestSaveAndLoadServiceParams(t *testing.T) {
|
func TestSaveAndLoadServiceParams(t *testing.T) {
|
||||||
|
|||||||
Reference in New Issue
Block a user