fix(测试跟踪): 异常格式处理

This commit is contained in:
fit2-zhao 2020-09-29 18:00:02 +08:00
parent e4a7c2eb34
commit a0009de2e6
1 changed files with 1 additions and 1 deletions

View File

@ -288,7 +288,7 @@ public class XmindCaseParser {
} catch (Exception ex) { } catch (Exception ex) {
processBuffer.append(Translator.get("incorrect_format")); processBuffer.append(Translator.get("incorrect_format"));
LogUtil.error(ex.getMessage()); LogUtil.error(ex.getMessage());
return ex.getMessage(); return "xmind "+Translator.get("incorrect_format");
} }
return process.toString(); return process.toString();
} }