Fix: Pass path to ui builder function when creating mock app

Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
Matthias Beyer 2019-10-26 15:00:37 +02:00
parent 47ba9fd2eb
commit c301b4b0ab
2 changed files with 2 additions and 0 deletions

View file

@ -168,6 +168,7 @@ mod tests {
modulename mock; modulename mock;
version env!("CARGO_PKG_VERSION"); version env!("CARGO_PKG_VERSION");
with help "imag-store mocking app"; with help "imag-store mocking app";
with ui builder function crate::ui::build_ui;
} }
use self::mock::generate_test_runtime; use self::mock::generate_test_runtime;

View file

@ -49,6 +49,7 @@ mod tests {
modulename mock; modulename mock;
version env!("CARGO_PKG_VERSION"); version env!("CARGO_PKG_VERSION");
with help "imag-store mocking app"; with help "imag-store mocking app";
with ui builder function crate::ui::build_ui;
} }
use self::mock::generate_test_runtime; use self::mock::generate_test_runtime;
use self::mock::reset_test_runtime; use self::mock::reset_test_runtime;