From: Thomas Huth Date: Wed, 19 Nov 2025 08:26:28 +0000 (+0100) Subject: tests/functional/x86_64/test_reverse_debug: Silence pylint warning X-Git-Tag: v10.2.0-rc2~14^2~6 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e24882e8483d20d214c452a68c3bf35064791982;p=thirdparty%2Fqemu.git tests/functional/x86_64/test_reverse_debug: Silence pylint warning Pylint does not like the underscores in the class name here, so rename the class accordingly to make pylint happy here. Reviewed-by: Zhao Liu Reviewed-by: Philippe Mathieu-Daudé Signed-off-by: Thomas Huth Message-ID: <20251119082636.43286-8-thuth@redhat.com> --- diff --git a/tests/functional/x86_64/test_reverse_debug.py b/tests/functional/x86_64/test_reverse_debug.py index 2b31ae8724..ab5dac9838 100755 --- a/tests/functional/x86_64/test_reverse_debug.py +++ b/tests/functional/x86_64/test_reverse_debug.py @@ -18,7 +18,7 @@ from qemu_test import skipFlakyTest from reverse_debugging import ReverseDebugging -class ReverseDebugging_X86_64(ReverseDebugging): +class ReverseDebuggingX86(ReverseDebugging): @skipFlakyTest("https://gitlab.com/qemu-project/qemu/-/issues/2922") def test_x86_64_pc(self):