summaryrefslogtreecommitdiff
path: root/qa/qa/runtime/key/ed25519.rb
diff options
context:
space:
mode:
Diffstat (limited to 'qa/qa/runtime/key/ed25519.rb')
-rw-r--r--qa/qa/runtime/key/ed25519.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/qa/qa/runtime/key/ed25519.rb b/qa/qa/runtime/key/ed25519.rb
index 3a3567d55da..f59d7b3688d 100644
--- a/qa/qa/runtime/key/ed25519.rb
+++ b/qa/qa/runtime/key/ed25519.rb
@@ -4,8 +4,8 @@ module QA
module Runtime
module Key
class ED25519 < Base
- def initialize
- super('ed25519', 256)
+ def initialize(bits = 256)
+ super('ed25519', bits)
end
end
end