From 29ed2131427e2c68562e14046d189dc982f37b90 Mon Sep 17 00:00:00 2001 From: Solomon Blount <74916907+siblount@users.noreply.github.com> Date: Tue, 6 Feb 2024 15:28:33 -0500 Subject: [PATCH] fix failing tests. --- src/DAZ_Installer.IOTests/Integration/DPFileInfoTests.cs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/DAZ_Installer.IOTests/Integration/DPFileInfoTests.cs b/src/DAZ_Installer.IOTests/Integration/DPFileInfoTests.cs index 30b697f..d35ce6d 100644 --- a/src/DAZ_Installer.IOTests/Integration/DPFileInfoTests.cs +++ b/src/DAZ_Installer.IOTests/Integration/DPFileInfoTests.cs @@ -7,12 +7,7 @@ namespace DAZ_Installer.IO.Integration.Tests #pragma warning disable CS0618 // This is for testing, as intended. public class DPFileInfoTests { - private static DPFileSystem unlimitedCtx = new DPFileSystem(DPFileScopeSettings.All); - private static DPFileSystem noCtx = new DPFileSystem(DPFileScopeSettings.None); private static DPFileInfo existingFile = null!; - private static DPFileInfo nonexistantFile = null!; - private static DPFileInfo outOfScope = null!; - private static DPFileInfo destOutOfScope = null!; private static string initExistingFilePath = null!; private static string tempDir = Path.Combine(Path.GetTempPath(), "DAZ_Installer.IO.Integration.Tests.DPFileInfoTests"); private static DPFileSystem defaultFS = new DPFileSystem(new DPFileScopeSettings(Array.Empty(), new[] { tempDir }, false)); @@ -36,9 +31,6 @@ public void TestInitialize() public void TestCleanup() { existingFile.TryDelete(); - nonexistantFile.TryDelete(); - outOfScope.TryDelete(); - destOutOfScope.TryDelete(); } [TestMethod]