(self)
| 445 | assert _strip_panel_count("MyPanel (v2)") == "MyPanel (v2)" |
| 446 | |
| 447 | def test_zero_count(self) -> None: |
| 448 | assert _strip_panel_count("Panel (0)") == "Panel" |
| 449 | |
| 450 | def test_empty_string(self) -> None: |
| 451 | assert _strip_panel_count("") == "" |
nothing calls this directly
no test coverage detected