From: Thomas Huth <[email protected]> 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 <[email protected]> Reviewed-by: Philippe Mathieu-Daudé <[email protected]> Signed-off-by: Thomas Huth <[email protected]> Message-ID: <[email protected]> --- tests/functional/x86_64/test_reverse_debug.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/functional/x86_64/test_reverse_debug.py b/tests/functional/x86_64/test_reverse_debug.py index 2b31ae87243..ab5dac98386 100755 --- a/tests/functional/x86_64/test_reverse_debug.py +++ b/tests/functional/x86_64/test_reverse_debug.py @@ -18,7 +18,7 @@ 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): -- 2.51.1
