From 08e9db90e0daba22624e7942cfe73c62b0115d3f Mon Sep 17 00:00:00 2001 From: tadeubas Date: Wed, 20 Mar 2024 13:06:24 -0300 Subject: [PATCH] black --- tests/test_display.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/test_display.py b/tests/test_display.py index 8cc27d7eb..8072a9d12 100644 --- a/tests/test_display.py +++ b/tests/test_display.py @@ -554,6 +554,7 @@ def test_draw_qr_code(mocker, m5stickv): 0, TEST_QR, 135, QR_DARK_COLOR, QR_LIGHT_COLOR, QR_LIGHT_COLOR ) + def test_flash_text(mocker, m5stickv): from krux.display import Display, FLASH_MSG_TIME from krux.themes import WHITE @@ -568,7 +569,5 @@ def test_flash_text(mocker, m5stickv): d.flash_text("test", WHITE) d.clear.assert_called() - d.draw_centered_text.assert_called_with( - "test", WHITE - ) + d.draw_centered_text.assert_called_with("test", WHITE) time.sleep_ms.assert_called_with(FLASH_MSG_TIME)