Skip to content

Commit b9ecf13

Browse files
committed
fix minor typo in comment
1 parent 0448427 commit b9ecf13

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/support/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646

4747
from tests.support._env import MIG_ENV, PY2
4848

49-
# Alow the use of SimpleNamespace on PY2.
49+
# Allow the use of SimpleNamespace on PY2.
5050

5151
if PY2:
5252
class SimpleNamespace(dict):
@@ -75,7 +75,7 @@ def __getattribute__(self, name):
7575

7676
# adjust the link through which confs are accessed to suit the environment
7777
_conf_link = os.path.join(_output_dir, 'testconfs')
78-
assert os.path.lexists(_conf_link) # it must already exist
78+
assert os.path.lexists(_conf_link) # it must already exist
7979
os.remove(_conf_link) # blow it away
8080
os.symlink(_conf_dir, _conf_link) # recreate it using the active MIG_BASE
8181
else:

0 commit comments

Comments
 (0)