Skip to content

Commit a8d4b01

Browse files
NH-4028 - what's next?
1 parent 196b22f commit a8d4b01

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

teamcity.build

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,8 @@
323323
Executed = bool.Parse(testCase.Attributes["executed"].Value)
324324
};
325325
326-
Enum.TryParse<ResultStatus>(testCase.Attributes["result"].Value, out var status);
326+
ResultStatus status;
327+
Enum.TryParse<ResultStatus>(testCase.Attributes["result"].Value, out status);
327328
result.Status = status;
328329
329330
if (result.Executed)

0 commit comments

Comments
 (0)