Compare commits
3 commits
de9f1ecd37
...
7aa0ce2e6a
Author | SHA1 | Date | |
---|---|---|---|
7aa0ce2e6a | |||
7243447efa | |||
907db9f122 |
2 changed files with 4 additions and 1 deletions
|
@ -46,7 +46,7 @@ fn when_history_has_expired_then_message_is_passed() {
|
|||
|
||||
#[test]
|
||||
fn when_history_has_unexpired_then_message_is_blocked() {
|
||||
let dur = Duration::from_secs(1);
|
||||
let dur = Duration::from_millis(1);
|
||||
let mut history = History::new(dur);
|
||||
|
||||
let user_notification = UserNotification::RepoConfigLoadFailure {
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
//
|
||||
#[cfg(feature = "tui")]
|
||||
mod tui;
|
||||
|
||||
mod alerts;
|
||||
mod file_watcher;
|
||||
mod forge;
|
||||
|
|
Loading…
Reference in a new issue