Fix: Do not pass --rtp in testing environment
As we run tests in-memory (already for a rather long time), we don't need to pass this anymore. Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
parent
6751c34f1b
commit
388632d7ff
1 changed files with 1 additions and 1 deletions
|
@ -96,7 +96,7 @@ macro_rules! make_mock_app {
|
||||||
|
|
||||||
#[allow(unused)]
|
#[allow(unused)]
|
||||||
pub fn generate_test_runtime<'a>(mut args: Vec<&'static str>) -> Result<Runtime<'a>, RuntimeError> {
|
pub fn generate_test_runtime<'a>(mut args: Vec<&'static str>) -> Result<Runtime<'a>, RuntimeError> {
|
||||||
let mut cli_args = vec![$appname, "--rtp", "/tmp"];
|
let mut cli_args = vec![$appname];
|
||||||
|
|
||||||
cli_args.append(&mut args);
|
cli_args.append(&mut args);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue