We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1740211 commit 39f920fCopy full SHA for 39f920f
besu/src/test/java/org/hyperledger/besu/cli/BesuCommandTest.java
@@ -830,10 +830,9 @@ public void nodekeyOptionDisabledUnderDocker() {
830
final File file = new File("./specific/enclavePrivateKey");
831
file.deleteOnExit();
832
833
- parseCommand("--node-private-enclavePrivateKey-file", file.getPath());
834
-
+ parseCommand("--node-private-key-file", file.getPath());
835
assertThat(commandErrorOutput.toString())
836
- .startsWith("Unknown options: '--node-private-enclavePrivateKey-file', './specific/key'");
+ .startsWith("Unknown options: '--node-private-key-file', './specific/enclavePrivateKey'");
837
assertThat(commandOutput.toString()).isEmpty();
838
}
839
0 commit comments