From b7578a48849effa6b5d15f17330ef7b29fc5cad9 Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 17 Mar 2026 05:24:09 +0000 Subject: [PATCH] Remove pointless test_column_type_with_config test https://claude.ai/code/session_01SvPEPqHgURTWESRp28pTC3 --- tests/test_column_types.py | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/tests/test_column_types.py b/tests/test_column_types.py index 0100a079..2929c1f3 100644 --- a/tests/test_column_types.py +++ b/tests/test_column_types.py @@ -381,17 +381,6 @@ async def test_column_type_base_defaults(): assert await ct.transform_value("val", None) == "val" -@pytest.mark.asyncio -async def test_column_type_with_config(): - class TestType(ColumnType): - name = "test" - description = "Test type" - - ct = TestType(config={"key": "value"}) - assert ct.config == {"key": "value"} - assert ct.name == "test" - - # --- render_cell extra with column types ---