Skip to content

Commit 73f8de9

Browse files
authored
Update test_uuid.py
1 parent 50996af commit 73f8de9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Lib/test/test_uuid.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1154,7 +1154,7 @@ def do_test_standalone_uuid(self, version):
11541154
self.assertEqual(u.version, version)
11551155

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

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

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

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

12421242
@mock.patch.object(sys, "argv", ["", "-u", "uuid8"])
1243-
def test_uuid1(self):
1243+
def test_cli_uuid8(self):
12441244
self.do_test_standalone_uuid(8)
12451245

12461246

0 commit comments

Comments
 (0)