Remove pointless test_column_type_with_config test

https://claude.ai/code/session_01SvPEPqHgURTWESRp28pTC3
This commit is contained in:
Claude 2026-03-17 05:24:09 +00:00
commit b7578a4884
No known key found for this signature in database

View file

@ -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 ---