Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan McGovern <alan.mcgovern@gmail.com>2012-08-15 18:05:49 +0400
committerAlan McGovern <alan.mcgovern@gmail.com>2012-08-15 18:05:49 +0400
commit0330ac1e94b24bcfae29e5bd5ec7731b2ea55634 (patch)
tree1e31db535625676bdc86f5548676b973f1b58275 /main/tests/UnitTests/Util.cs
parentcbe29d91426fe6f47108947f3288f2792a077537 (diff)
[Tests] Clean up this path a little
Call GetFullPath on this value so we have a nice canonical path when trying to figure out where paths are being loaded.
Diffstat (limited to 'main/tests/UnitTests/Util.cs')
-rw-r--r--main/tests/UnitTests/Util.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/tests/UnitTests/Util.cs b/main/tests/UnitTests/Util.cs
index 21e0776c43..660a6e0058 100644
--- a/main/tests/UnitTests/Util.cs
+++ b/main/tests/UnitTests/Util.cs
@@ -46,7 +46,7 @@ namespace UnitTests
if (rootDir == null) {
rootDir = Path.GetDirectoryName (typeof(Util).Assembly.Location);
rootDir = Path.Combine (Path.Combine (rootDir, ".."), "..");
- rootDir = Path.Combine (rootDir, "tests");
+ rootDir = Path.GetFullPath (Path.Combine (rootDir, "tests"));
}
return rootDir;
}