Fixed test function.

This commit is contained in:
shy 2021-04-20 21:53:25 +02:00
parent 8e77725334
commit 7950187cb7

View file

@ -17,13 +17,13 @@
use crate::clock::{Clock, font};
use crate::layout::Layout;
use crate::Config;
use crate::{Config, Cradle};
fn default_config() -> Config {
Config {
fancy: false,
quit: false,
command: None,
commands: Cradle::new(),
font: &font::NORMAL,
}
}