diff options
author | Jakob Unterwurzacher | 2017-03-05 23:15:50 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2017-03-05 23:15:50 +0100 |
commit | b878306d2a3fd18d4114a73febb2caa658f684ad (patch) | |
tree | 38f144eaf090c217da32698f006e460e8a9790c4 /internal/configfile/config_test.go | |
parent | b7538fc026dc25d0061e08bedc4b3aff97bb52d2 (diff) |
tests: configfile: fix spurious test failure
This test fails because Raw64 has been disabled for now.
Diffstat (limited to 'internal/configfile/config_test.go')
-rw-r--r-- | internal/configfile/config_test.go | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/internal/configfile/config_test.go b/internal/configfile/config_test.go index 7899dac..dc81600 100644 --- a/internal/configfile/config_test.go +++ b/internal/configfile/config_test.go @@ -69,9 +69,11 @@ func TestCreateConfFile(t *testing.T) { t.Fatal(err) } // Raw64 is set by default since gocryptfs v1.3 - if !c.IsFeatureFlagSet(FlagRaw64) { - t.Error("FlagRaw64 flag should be set but is not") - } + /* + if !c.IsFeatureFlagSet(FlagRaw64) { + t.Error("FlagRaw64 flag should be set but is not") + } + */ } func TestCreateConfFileAESSIV(t *testing.T) { |