From ceac08493b39fd3725249695d955521e284f2ac2 Mon Sep 17 00:00:00 2001 From: Jasmijn Wellner Date: Sun, 5 Oct 2025 18:07:14 +0200 Subject: [PATCH] Fix typo --- tests/test_content.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_content.py b/tests/test_content.py index 70e30db56..61e86d0f6 100644 --- a/tests/test_content.py +++ b/tests/test_content.py @@ -136,7 +136,7 @@ def test_add() -> None: assert content.spans == [Span(0, 3, "red"), Span(4, 7, "blue")] assert content.cell_length == 7 -def test_radd() -> NOne +def test_radd() -> None: """Test reverse addition.""" assert "foo" + Content("bar") == Content("foobar")