1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
  | 
diff --git a/cmd/spectre/main_test.go b/cmd/spectre/main_test.go
index a6af8e0c31042da746e928e33a7cb032efcf69d2..893b7d54581fd5d7e5f66ac128b5c665a52bc147 100644
--- a/cmd/spectre/main_test.go
+++ b/cmd/spectre/main_test.go
@@ -21,9 +21,11 @@ 		t.Run(tc.ID, func(t *testing.T) {
 			args := []string{
 				"--username", tc.UserName,
 				"--secret", tc.UserSecret,
+				"--secret-file", "",
 				"--template", tc.ResultType,
 				"--counter", tc.KeyCounter,
 				"--scope", tc.KeyPurpose,
+				"--print",
 				tc.SiteName,
 			}
 
  |