Ver Fonte

Stress: Templates did not support lower-case settings

Ask Solem há 9 anos atrás
pai
commit
fff558072d
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      funtests/stress/stress/templates.py

+ 1 - 1
funtests/stress/stress/templates.py

@@ -40,7 +40,7 @@ def mixin_template(template, conf):
     cls = symbol_by_name(templates[template])
     conf.update(dict(
         (k, v) for k, v in items(vars(cls))
-        if k.isupper() and not k.startswith('_')
+        if not k.startswith('_')
     ))