Skip to content
Prev Previous commit
Next Next commit
Update test_uuid.py
  • Loading branch information
LamentXU123 authored Jul 11, 2025
commit 73f8de9accfa7d709760315e88e5103cd39c9fc9
8 changes: 4 additions & 4 deletions Lib/test/test_uuid.py
Original file line number Diff line number Diff line change
Expand Up @@ -1154,7 +1154,7 @@ def do_test_standalone_uuid(self, version):
self.assertEqual(u.version, version)

@mock.patch.object(sys, "argv", ["", "-u", "uuid1"])
def test_uuid1(self):
def test_cli_uuid1(self):
self.do_test_standalone_uuid(1)

@mock.patch.object(sys, "argv", ["", "-u", "uuid3", "-n", "@dns"])
Expand Down Expand Up @@ -1232,15 +1232,15 @@ def test_cli_uuid5_ouputted_with_valid_namespace_and_name(self):
self.assertEqual(uuid_output.version, 5)

@mock.patch.object(sys, "argv", ["", "-u", "uuid6"])
def test_uuid1(self):
def test_cli_uuid6(self):
self.do_test_standalone_uuid(6)

@mock.patch.object(sys, "argv", ["", "-u", "uuid7"])
def test_uuid1(self):
def test_cli_uuid7(self):
self.do_test_standalone_uuid(7)

@mock.patch.object(sys, "argv", ["", "-u", "uuid8"])
def test_uuid1(self):
def test_cli_uuid8(self):
self.do_test_standalone_uuid(8)
Comment thread
LamentXU123 marked this conversation as resolved.


Expand Down
Loading