mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 10:12:58 +00:00
bf182e4dec
A failing test was keeping it from building. I [confirmed with the dev](https://github.com/mgunyho/tere/issues/44) it's known and ignored so I commented it out with a patch. This app isn't that useful until some [shell hooks have been added.](https://github.com/mgunyho/tere#setup) So I hope to add a config option to home-manager such as: ```nix programs.tere = { enabled = true; useBashIntegration = true; useFishIntegration = true; }; ```
20 lines
508 B
Diff
20 lines
508 B
Diff
diff --git a/src/app_state.rs b/src/app_state.rs
|
|
index e44acb6..713642a 100644
|
|
--- a/src/app_state.rs
|
|
+++ b/src/app_state.rs
|
|
@@ -1272,7 +1272,7 @@ mod tests {
|
|
assert_eq!(s.cursor_pos, 1);
|
|
assert_eq!(s.scroll_pos, 2);
|
|
}
|
|
-
|
|
+ /*
|
|
#[test]
|
|
fn test_advance_search_with_filter_search_and_scrolling2() {
|
|
let mut s = create_test_state_with_buf(
|
|
@@ -1302,4 +1302,5 @@ mod tests {
|
|
assert_eq!(s.cursor_pos, 1);
|
|
assert_eq!(s.scroll_pos, 0);
|
|
}
|
|
+ */
|
|
}
|