summaryrefslogtreecommitdiff
path: root/tests/utils_tests/test_module/another_good_module.py
diff options
context:
space:
mode:
authorMarkus Holtermann <info@markusholtermann.eu>2014-10-31 10:22:15 +0100
committerTim Graham <timograham@gmail.com>2014-10-31 08:01:47 -0400
commit98da408964b229ee0b35bb8c4500820e3606aeab (patch)
tree2d5208b605524f0a565318806f708449f096e922 /tests/utils_tests/test_module/another_good_module.py
parentc0c1bb9e64d7e1cea50dc4818ffcf229b568578b (diff)
Fixed #23670 -- Prevented partial import state during module autodiscovery
Thanks kostko for the report.
Diffstat (limited to 'tests/utils_tests/test_module/another_good_module.py')
-rw-r--r--tests/utils_tests/test_module/another_good_module.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/utils_tests/test_module/another_good_module.py b/tests/utils_tests/test_module/another_good_module.py
index ed4b2d34a2..fd69a3b30c 100644
--- a/tests/utils_tests/test_module/another_good_module.py
+++ b/tests/utils_tests/test_module/another_good_module.py
@@ -1 +1,6 @@
+from . import site
content = 'Another Good Module'
+
+site._registry.update({
+ 'lorem': 'ipsum',
+})