From 3e652b46a1a3e5deeaa3ebbcffb617b936bc119c Mon Sep 17 00:00:00 2001 From: Mark Mackey Date: Tue, 22 Feb 2022 13:09:09 -0600 Subject: [PATCH] Fixed Comment --- lighthouse/tests/exec.rs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lighthouse/tests/exec.rs b/lighthouse/tests/exec.rs index decdb827b6..61e0677ca8 100644 --- a/lighthouse/tests/exec.rs +++ b/lighthouse/tests/exec.rs @@ -24,8 +24,8 @@ pub trait CommandLineTestExec { /// Executes the `Command` returned by `Self::cmd_mut` with temporary data directory, dumps /// the configuration and shuts down immediately. /// - /// Options `--datadir`, `--dump-config` and `--immediate-shutdown` must not be set on the - /// command. + /// Options `--datadir`, `--dump-config`, `--dump-chain-config` and `--immediate-shutdown` must + /// not be set on the command. fn run(&mut self) -> CompletedTest { // Setup temp directory. let tmp_dir = TempDir::new().expect("Unable to create temporary directory"); @@ -63,7 +63,8 @@ pub trait CommandLineTestExec { /// Executes the `Command` returned by `Self::cmd_mut` dumps the configuration and /// shuts down immediately. /// - /// Options `--dump-config` and `--immediate-shutdown` must not be set on the command. + /// Options `--dump-config`, `--dump-chain-config` and `--immediate-shutdown` must not be set on + /// the command. fn run_with_no_datadir(&mut self) -> CompletedTest { // Setup temp directory. let tmp_dir = TempDir::new().expect("Unable to create temporary directory");