Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff3e5e3 commit 4480d30Copy full SHA for 4480d30
1 file changed
Lib/test/test_uuid.py
@@ -1,4 +1,4 @@
1
-from unittest import TestCase
+import unittest
2
from test import support
3
import builtins
4
import io
@@ -12,7 +12,7 @@ def importable(name):
12
except:
13
return False
14
15
-class TestUUID(TestCase):
+class TestUUID(unittest.TestCase):
16
last_node = None
17
source2node = {}
18
@@ -362,6 +362,7 @@ def test_getnode(self):
362
363
self.assertEqual(node1, node2)
364
365
+ @unittest.skipUnless(os.name == 'posix', 'requires Posix')
366
def test_find_mac(self):
367
data = '''\
368
0 commit comments