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 0448427 commit b9ecf13Copy full SHA for b9ecf13
tests/support/__init__.py
@@ -46,7 +46,7 @@
46
47
from tests.support._env import MIG_ENV, PY2
48
49
-# Alow the use of SimpleNamespace on PY2.
+# Allow the use of SimpleNamespace on PY2.
50
51
if PY2:
52
class SimpleNamespace(dict):
@@ -75,7 +75,7 @@ def __getattribute__(self, name):
75
76
# adjust the link through which confs are accessed to suit the environment
77
_conf_link = os.path.join(_output_dir, 'testconfs')
78
- assert os.path.lexists(_conf_link) # it must already exist
+ assert os.path.lexists(_conf_link) # it must already exist
79
os.remove(_conf_link) # blow it away
80
os.symlink(_conf_dir, _conf_link) # recreate it using the active MIG_BASE
81
else:
0 commit comments