Skip to content
Prev Previous commit
Update test_uuid.py
  • Loading branch information
LamentXU123 authored Jul 11, 2025
commit a8d40ed9b4616f6ab5a14f9c5883d4c440228370
4 changes: 2 additions & 2 deletions Lib/test/test_uuid.py
Original file line number Diff line number Diff line change
Expand Up @@ -1244,12 +1244,12 @@ def test_cli_uuid8(self):
self.do_test_standalone_uuid(8)
Comment thread
LamentXU123 marked this conversation as resolved.


class TestUUIDWithoutExtModule(CommandLineRunTime, BaseTestUUID, unittest.TestCase):
class TestUUIDWithoutExtModule(CommandLineTestCases, BaseTestUUID, unittest.TestCase):
uuid = py_uuid


@unittest.skipUnless(c_uuid, 'requires the C _uuid module')
class TestUUIDWithExtModule(CommandLineRunTime, BaseTestUUID, unittest.TestCase):
class TestUUIDWithExtModule(CommandLineTestCases, BaseTestUUID, unittest.TestCase):
uuid = c_uuid

def check_has_stable_libuuid_extractable_node(self):
Expand Down
Loading