aboutsummaryrefslogtreecommitdiff
path: root/integration_tests/cli_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'integration_tests/cli_test.go')
-rw-r--r--integration_tests/cli_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/integration_tests/cli_test.go b/integration_tests/cli_test.go
index d79b877..7047edb 100644
--- a/integration_tests/cli_test.go
+++ b/integration_tests/cli_test.go
@@ -17,7 +17,7 @@ func TestInit(t *testing.T) {
if err != nil {
t.Fatal(err)
}
- cmd := exec.Command(gocryptfsBinary, "-init", "-extpass", "echo test", dir)
+ cmd := exec.Command(gocryptfsBinary, "-init", "-extpass", "echo test", "-scryptn=10", dir)
if testing.Verbose() {
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
@@ -52,7 +52,7 @@ func TestInitConfig(t *testing.T) {
t.Fatal(err)
}
cmd := exec.Command(gocryptfsBinary, "-init", "-extpass", "echo test",
- "-config", config, dir)
+ "-config", config, "-scryptn=10", dir)
if testing.Verbose() {
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr