mirror of
https://github.com/qemu/qemu.git
synced 2026-07-08 17:46:10 +00:00
The pylint from Fedora 44 found a new issue in this test: tests/functional/ppc/test_ppe42.py:63:20: W0101: Unreachable code (unreachable) And indeed, the "break" is unreachable since the previous self.fail() always aborts immediately. Thus let's remove the "break" to make pylint happy again. Message-ID: <20260427080731.389061-1-thuth@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Thomas Huth <thuth@redhat.com>