From 986ec3691e4eb56270208fe7c5d72f6ac6ab692f Mon Sep 17 00:00:00 2001 From: Jeremy Date: Thu, 16 May 2024 21:24:20 +1000 Subject: [PATCH] fix typo --- Flow.Launcher.Test/Plugins/ExplorerTest.cs | 24 +++++++++++----------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/Flow.Launcher.Test/Plugins/ExplorerTest.cs b/Flow.Launcher.Test/Plugins/ExplorerTest.cs index caa884b51..80cb74729 100644 --- a/Flow.Launcher.Test/Plugins/ExplorerTest.cs +++ b/Flow.Launcher.Test/Plugins/ExplorerTest.cs @@ -186,18 +186,18 @@ namespace Flow.Launcher.Test.Plugins $"Actual result was: {result}{Environment.NewLine}"); } - //[TestCase(@"c:\\", false)] - //[TestCase(@"i:\", true)] - //[TestCase(@"\c:\", false)] - //[TestCase(@"cc:\", false)] - //[TestCase(@"\\\SomeNetworkLocation\", false)] - //[TestCase(@"\\SomeNetworkLocation\", true)] - //[TestCase("RandomFile", false)] - //[TestCase(@"c:\>*", true)] - //[TestCase(@"c:\>", true)] - //[TestCase(@"c:\SomeLocation\SomeOtherLocation\>", true)] - //[TestCase(@"c:\SomeLocation\SomeOtherLocation", true)] - //[TestCase(@"c:\SomeLocation\SomeOtherLocation\SomeFile.exe", true)] + [TestCase(@"c:\\", false)] + [TestCase(@"i:\", true)] + [TestCase(@"\c:\", false)] + [TestCase(@"cc:\", false)] + [TestCase(@"\\\SomeNetworkLocation\", false)] + [TestCase(@"\\SomeNetworkLocation\", true)] + [TestCase("RandomFile", false)] + [TestCase(@"c:\>*", true)] + [TestCase(@"c:\>", true)] + [TestCase(@"c:\SomeLocation\SomeOtherLocation\>", true)] + [TestCase(@"c:\SomeLocation\SomeOtherLocation", true)] + [TestCase(@"c:\SomeLocation\SomeOtherLocation\SomeFile.exe", true)] [TestCase(@"\\SomeNetworkLocation\SomeFile.exe", true)] public void WhenGivenQuerySearchString_ThenShouldIndicateIfIsLocationPathString(string querySearchString, bool expectedResult)