Fixed test function.
This commit is contained in:
parent
8e77725334
commit
7950187cb7
1 changed files with 2 additions and 2 deletions
|
@ -17,13 +17,13 @@
|
||||||
|
|
||||||
use crate::clock::{Clock, font};
|
use crate::clock::{Clock, font};
|
||||||
use crate::layout::Layout;
|
use crate::layout::Layout;
|
||||||
use crate::Config;
|
use crate::{Config, Cradle};
|
||||||
|
|
||||||
fn default_config() -> Config {
|
fn default_config() -> Config {
|
||||||
Config {
|
Config {
|
||||||
fancy: false,
|
fancy: false,
|
||||||
quit: false,
|
quit: false,
|
||||||
command: None,
|
commands: Cradle::new(),
|
||||||
font: &font::NORMAL,
|
font: &font::NORMAL,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue