summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Test/TestBase.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/DotNetOpenAuth.Test/TestBase.cs')
-rw-r--r--src/DotNetOpenAuth.Test/TestBase.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DotNetOpenAuth.Test/TestBase.cs b/src/DotNetOpenAuth.Test/TestBase.cs
index df52d0a..510e13a 100644
--- a/src/DotNetOpenAuth.Test/TestBase.cs
+++ b/src/DotNetOpenAuth.Test/TestBase.cs
@@ -5,6 +5,7 @@
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.Test {
+ using System;
using System.IO;
using System.Reflection;
using System.Web;
@@ -12,7 +13,6 @@ namespace DotNetOpenAuth.Test {
using DotNetOpenAuth.OAuth.Messages;
using log4net;
using NUnit.Framework;
- using NUnit.Framework;
/// <summary>
/// The base class that all test classes inherit from.
@@ -21,7 +21,7 @@ namespace DotNetOpenAuth.Test {
/// <summary>
/// The full path to the directory that contains the test ASP.NET site.
/// </summary>
- internal static readonly string TestWebDirectory = Path.GetFullPath(Path.Combine(Directory.GetCurrentDirectory(), @"..\..\..\..\src\DotNetOpenAuth.TestWeb"));
+ internal static readonly string TestWebDirectory = Path.GetFullPath(Path.Combine(Environment.CurrentDirectory, @"..\..\src\DotNetOpenAuth.TestWeb"));
private MessageDescriptionCollection messageDescriptions = new MessageDescriptionCollection();