From e55277110bc625d8f8d0b4c2f5f1a5d8a4558616 Mon Sep 17 00:00:00 2001 From: Darren Burns Date: Mon, 14 Mar 2022 10:44:19 +0000 Subject: [PATCH] Fix incorrectly parameterised test --- tests/test_win32_console.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/test_win32_console.py b/tests/test_win32_console.py index 0952dc1e..33d4fe48 100644 --- a/tests/test_win32_console.py +++ b/tests/test_win32_console.py @@ -166,9 +166,7 @@ if sys.platform == "win32": @patch.object( _win32_console, "GetConsoleScreenBufferInfo", return_value=StubScreenBufferInfo ) - def test_write_styled_no_background_color( - _, SetConsoleTextAttribute, __, win32_handle - ): + def test_write_styled_no_background_color(_, SetConsoleTextAttribute, win32_handle): style = Style.parse("blue") text = "Hello, world!" term = LegacyWindowsTerm(sys.stdout)