]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
tests/functional/x86_64/test_reverse_debug: Silence pylint warning
authorThomas Huth <thuth@redhat.com>
Wed, 19 Nov 2025 08:26:28 +0000 (09:26 +0100)
committerThomas Huth <thuth@redhat.com>
Fri, 21 Nov 2025 07:33:15 +0000 (08:33 +0100)
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 <zhao1.liu@intel.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Message-ID: <20251119082636.43286-8-thuth@redhat.com>

tests/functional/x86_64/test_reverse_debug.py

index 2b31ae872433185d8b2d7790f6b70aeef4484353..ab5dac98386ef898baec16a31a82aa5caf441a82 100755 (executable)
@@ -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):