From 60f3b615a706949f6ae9734eeaea519573af4522 Mon Sep 17 00:00:00 2001 From: Will McGugan Date: Tue, 22 Oct 2024 16:29:46 +0100 Subject: [PATCH] changelog --- CHANGELOG.md | 2 +- tests/test_cells.py | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 182d6c591..a2a537279 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed -- Fixed broken regex that may have resulted in poor performance. +- Fixed broken regex that may have resulted in poor performance. https://github.com/Textualize/rich/pull/3535 ## [13.9.2] - 2024-10-04 diff --git a/tests/test_cells.py b/tests/test_cells.py index d694fb379..8ba8169e3 100644 --- a/tests/test_cells.py +++ b/tests/test_cells.py @@ -72,10 +72,9 @@ def test_is_single_cell_widths() -> None: BOX = "┌─┬┐│ ││├─┼┤│ ││├─┼┤├─┼┤│ ││└─┴┘" for character in BOX: - print(repr(character)) assert _is_single_cell_widths(character) - for character in "💩": + for character in "💩😽": assert not _is_single_cell_widths(character) for character in "わさび":