From 10b5fca013b4fa0839b60262164400e5a63f2fb4 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Thu, 5 Dec 2019 09:17:21 -0500 Subject: remove remaining unnecessary lint flags --- tests/scroll.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'tests/scroll.rs') diff --git a/tests/scroll.rs b/tests/scroll.rs index 2b1117e..03f4fa7 100644 --- a/tests/scroll.rs +++ b/tests/scroll.rs @@ -1,5 +1,3 @@ -#![allow(clippy::cognitive_complexity)] - #[test] fn scroll_regions() { let mut parser = vt100::Parser::default(); @@ -72,6 +70,7 @@ fn origin_mode() { assert_eq!(parser.screen().cursor_position(), (4, 0)); } +#[allow(clippy::cognitive_complexity)] #[test] fn scrollback() { let mut parser = vt100::Parser::new(24, 80, 10); -- cgit v1.2.3-54-g00ecf