浏览代码

bug fix spec status

master
Dirk Alders 3 年前
父节点
当前提交
7b807e5ca7
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      jsonlog.py

+ 1
- 1
jsonlog.py 查看文件

@@ -270,7 +270,7 @@ def status_doc(ut_folder):
270 270
 def status_spec(ut_folder):
271 271
     if os.path.exists(os.path.join(ut_folder, 'requirements', 'specification.reqif')):
272 272
         try:
273
-            with open(get_ut_jsonlog(ut_folder), 'r') as fh:
273
+            with open(get_lib_jsonlog(ut_folder), 'r') as fh:
274 274
                 ut = json.loads(fh.read())
275 275
                 if len(ut[MAIN_KEY_LOST_SOULS][LOST_ITEMLIST]) > 0 or len(ut[MAIN_KEY_LOST_SOULS][LOST_TESTCASELIST]) > 0:
276 276
                     return STATUS_IN_WORK

正在加载...
取消
保存