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


class TestUUIDWithoutExtModule(TestUUIDCommandLineRunTimeMixin, BaseTestUUID, unittest.TestCase):
class TestUUIDWithoutExtModule(CommandLineRunTime, BaseTestUUID, unittest.TestCase):
Comment thread
LamentXU123 marked this conversation as resolved.
Outdated
uuid = py_uuid


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

def check_has_stable_libuuid_extractable_node(self):
Expand Down
Loading