Skip to content
Snippets Groups Projects
Commit 30b09dac authored by Anton Bagliy's avatar Anton Bagliy
Browse files

FIX: variables in NunitReportParser

parent 01a044ca
No related merge requests found
...@@ -165,7 +165,7 @@ namespace NunitReport ...@@ -165,7 +165,7 @@ namespace NunitReport
basePath = args[0]; basePath = args[0];
filePath = basePath + @"/TestResult.xml"; filePath = basePath + @"/TestResult.xml";
//userName = args[1].Split('/')[0]; //userName = args[1].Split('/')[0];
nameparts = args[1].Split('/'); var nameparts = args[1].Split('/');
string repoName = ""; string repoName = "";
if (nameparts.Length > 1) { if (nameparts.Length > 1) {
repoName = nameparts[1]; repoName = nameparts[1];
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment