Skip to content

Commit c4ce3b9

Browse files
niemyjskiejsmith
authored andcommitted
Fixed a pathing issue with unit tests
1 parent 69f9efb commit c4ce3b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/Exceptionless.Tests/Utility/ErrorDataReader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ private static Event GetEvent(string fileName) {
2222
}
2323

2424
public static IEnumerable<Event> GetEvents() {
25-
return Directory.EnumerateFiles(Path.Combine("..", "..", "..", "ErrorData"), "*.json").Select(GetEvent);
25+
return Directory.EnumerateFiles(Path.GetFullPath(Path.Combine("..", "..", "..", "ErrorData")), "*.json").Select(GetEvent);
2626
}
2727
}
2828
}

0 commit comments

Comments
 (0)