瀏覽代碼

Stress: Templates did not support lower-case settings

Ask Solem 9 年之前
父節點
當前提交
fff558072d
共有 1 個文件被更改,包括 1 次插入1 次删除
  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('_')
     ))