Index: Application/Ringtoets/test/Application.Ringtoets.Storage.Test/RingtoetsDatabaseCreatorTest.cs =================================================================== diff -u -r9e7b8344cc985249f312870b9030705371c82bfe -r28ab332db2d96ad9e766f19677af1c00fc88a644 --- Application/Ringtoets/test/Application.Ringtoets.Storage.Test/RingtoetsDatabaseCreatorTest.cs (.../RingtoetsDatabaseCreatorTest.cs) (revision 9e7b8344cc985249f312870b9030705371c82bfe) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.Test/RingtoetsDatabaseCreatorTest.cs (.../RingtoetsDatabaseCreatorTest.cs) (revision 28ab332db2d96ad9e766f19677af1c00fc88a644) @@ -31,7 +31,7 @@ [Explicit("Creates a new Ringtoets.rtd file in the root of the Application.Ringtoets.Storage")] public class RingtoetsDatabaseCreatorTest { - private static readonly string rootPath = TestHelper.GetScratchPadPath(); + private static readonly string pathToStorageProject = Path.Combine(Path.GetDirectoryName(TestHelper.SolutionRoot), "Application", "Ringtoets", "src", "Application.Ringtoets.Storage"); /// /// Creates a new Ringtoets.rtd file in the root of the , @@ -41,7 +41,7 @@ public void RingtoetsDatabaseCreator_Explicit_CreatesRingtoetsProjectDatabaseFile() { // Setup - var storageFile = Path.Combine(rootPath, "Ringtoets.rtd"); + var storageFile = Path.Combine(pathToStorageProject, "Ringtoets.rtd"); if (File.Exists(storageFile)) { TestDelegate precondition = () => File.Delete(storageFile);