DisableSymlinks -> !SymlinksEnabled

This commit is contained in:
Jakob Borg
2014-12-01 11:26:54 +01:00
parent 8a34158fa4
commit e7441ff6e8
6 changed files with 10 additions and 9 deletions

View File

@@ -53,7 +53,7 @@ func TestDefaultValues(t *testing.T) {
KeepTemporariesH: 24,
CacheIgnoredFiles: true,
ProgressUpdateIntervalS: 5,
DisableSymlinks: false,
SymlinksEnabled: true,
}
cfg := New(device1)
@@ -156,7 +156,7 @@ func TestOverriddenValues(t *testing.T) {
KeepTemporariesH: 48,
CacheIgnoredFiles: false,
ProgressUpdateIntervalS: 10,
DisableSymlinks: true,
SymlinksEnabled: false,
}
cfg, err := Load("testdata/overridenvalues.xml", device1)