This commit is contained in:
Jasmijn Wellner
2025-10-05 18:07:14 +02:00
committed by GitHub
parent a00fdeba44
commit ceac08493b

View File

@@ -136,7 +136,7 @@ def test_add() -> None:
assert content.spans == [Span(0, 3, "red"), Span(4, 7, "blue")] assert content.spans == [Span(0, 3, "red"), Span(4, 7, "blue")]
assert content.cell_length == 7 assert content.cell_length == 7
def test_radd() -> NOne def test_radd() -> None:
"""Test reverse addition.""" """Test reverse addition."""
assert "foo" + Content("bar") == Content("foobar") assert "foo" + Content("bar") == Content("foobar")