aboutsummaryrefslogtreecommitdiff
path: root/internal/configfile/config_test.go
diff options
context:
space:
mode:
authorJakob Unterwurzacher2017-03-05 23:15:50 +0100
committerJakob Unterwurzacher2017-03-05 23:15:50 +0100
commitb878306d2a3fd18d4114a73febb2caa658f684ad (patch)
tree38f144eaf090c217da32698f006e460e8a9790c4 /internal/configfile/config_test.go
parentb7538fc026dc25d0061e08bedc4b3aff97bb52d2 (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.go8
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) {