diff --git a/src/NzbDrone.Common.Test/NzbDrone.Common.Test.csproj b/src/NzbDrone.Common.Test/NzbDrone.Common.Test.csproj
index 130edbda6..50315469b 100644
--- a/src/NzbDrone.Common.Test/NzbDrone.Common.Test.csproj
+++ b/src/NzbDrone.Common.Test/NzbDrone.Common.Test.csproj
@@ -86,11 +86,11 @@
     <Compile Include="LevenshteinDistanceFixture.cs" />
     <Compile Include="OsPathFixture.cs" />
     <Compile Include="PathExtensionFixture.cs" />
-    <Compile Include="ProcessProviderTests.cs" />
+    <Compile Include="ProcessProviderFixture.cs" />
     <Compile Include="ReflectionExtensions.cs" />
     <Compile Include="ReflectionTests\ReflectionExtensionFixture.cs" />
     <Compile Include="ServiceFactoryFixture.cs" />
-    <Compile Include="ServiceProviderTests.cs" />
+    <Compile Include="ServiceProviderFixture.cs" />
     <Compile Include="TPLTests\DebouncerFixture.cs" />
     <Compile Include="TPLTests\RateLimitServiceFixture.cs" />
     <Compile Include="WebClientTests.cs" />
@@ -175,4 +175,4 @@
   <Target Name="AfterBuild">
   </Target>
   -->
-</Project>
+</Project>
\ No newline at end of file
diff --git a/src/NzbDrone.Common.Test/ProcessProviderTests.cs b/src/NzbDrone.Common.Test/ProcessProviderFixture.cs
similarity index 98%
rename from src/NzbDrone.Common.Test/ProcessProviderTests.cs
rename to src/NzbDrone.Common.Test/ProcessProviderFixture.cs
index 649fe7688..bf79447bc 100644
--- a/src/NzbDrone.Common.Test/ProcessProviderTests.cs
+++ b/src/NzbDrone.Common.Test/ProcessProviderFixture.cs
@@ -16,7 +16,7 @@ namespace NzbDrone.Common.Test
     // We don't want one tests setup killing processes used in another
     [NonParallelizable]
     [TestFixture]
-    public class ProcessProviderTests : TestBase<ProcessProvider>
+    public class ProcessProviderFixture : TestBase<ProcessProvider>
     {
 
         [SetUp]
diff --git a/src/NzbDrone.Common.Test/ServiceProviderTests.cs b/src/NzbDrone.Common.Test/ServiceProviderFixture.cs
similarity index 98%
rename from src/NzbDrone.Common.Test/ServiceProviderTests.cs
rename to src/NzbDrone.Common.Test/ServiceProviderFixture.cs
index 23645a2d1..ecbc420d6 100644
--- a/src/NzbDrone.Common.Test/ServiceProviderTests.cs
+++ b/src/NzbDrone.Common.Test/ServiceProviderFixture.cs
@@ -11,7 +11,7 @@ namespace NzbDrone.Common.Test
 {
     [TestFixture]
     [Timeout(15000)]
-    public class ServiceProviderTests : TestBase<ServiceProvider>
+    public class ServiceProviderFixture : TestBase<ServiceProvider>
     {
         private const string ALWAYS_INSTALLED_SERVICE = "SCardSvr"; //Smart Card
         private const string TEMP_SERVICE_NAME = "NzbDrone_Nunit";