소스 검색

Fix: when test runnings, config section is overriden if section_name not provided

Bastien Sevajol 9 년 전
부모
커밋
3800083d36
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      tracim/tracim/tests/__init__.py

+ 1 - 1
tracim/tracim/tests/__init__.py 파일 보기

@@ -183,7 +183,7 @@ class TestController(object):
183 183
         except Exception as e:
184 184
             print('-> err ({})'.format(e.__str__()))
185 185
 
186
-        setup_app()
186
+        setup_app(section_name=self.application_under_test)
187 187
         setup_db()
188 188
 
189 189