From 5b8d027d4671e4962a4706ceff1380d674da7efb Mon Sep 17 00:00:00 2001 From: Cal Corum Date: Sat, 21 Mar 2026 02:02:10 -0500 Subject: [PATCH] fix: remove test_positions_df non-test that always passes (#16) Closes #16 Deleted test_positions_df which called an async function synchronously (returning a coroutine, not a DataFrame) and asserted True == True. Zero coverage. Also removed the now-unused pd_positions_df import. Co-Authored-By: Claude Sonnet 4.6 --- tests/test_helpers.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/tests/test_helpers.py b/tests/test_helpers.py index 875d8ab..83d4268 100644 --- a/tests/test_helpers.py +++ b/tests/test_helpers.py @@ -1,10 +1,4 @@ -from creation_helpers import pd_positions_df, mround, sanitize_chance_output - - -def test_positions_df(): - cardset_19_pos = pd_positions_df(19) - - assert True == True +from creation_helpers import mround, sanitize_chance_output def test_mround():