From 4f37bb1f22f4046dde583e7e5f1e5c9b7cd219ee Mon Sep 17 00:00:00 2001 From: Charles Zablit Date: Wed, 30 Jul 2025 10:19:19 +0100 Subject: [PATCH] [lldb] remove unittest2 --- lldb/packages/Python/lldbsuite/test/lldbplaygroundrepl.py | 2 +- lldb/test/API/python_api/sbvalue_updates/TestSBValueUpdates.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lldb/packages/Python/lldbsuite/test/lldbplaygroundrepl.py b/lldb/packages/Python/lldbsuite/test/lldbplaygroundrepl.py index 58626f9ff5d29..f336530628681 100644 --- a/lldb/packages/Python/lldbsuite/test/lldbplaygroundrepl.py +++ b/lldb/packages/Python/lldbsuite/test/lldbplaygroundrepl.py @@ -120,4 +120,4 @@ def test_playgrounds(self): import atexit lldb.SBDebugger.Initialize() atexit.register(lldb.SBDebugger.Terminate) - unittest2.main() + unittest.main() diff --git a/lldb/test/API/python_api/sbvalue_updates/TestSBValueUpdates.py b/lldb/test/API/python_api/sbvalue_updates/TestSBValueUpdates.py index 4dadfc84b512b..f54f73bd04843 100644 --- a/lldb/test/API/python_api/sbvalue_updates/TestSBValueUpdates.py +++ b/lldb/test/API/python_api/sbvalue_updates/TestSBValueUpdates.py @@ -66,4 +66,4 @@ def do_test(self): import atexit lldb.SBDebugger.Initialize() atexit.register(lldb.SBDebugger.Terminate) - unittest2.main() + unittest.main()