whitespace only (#5747)

This commit is contained in:
Clint Rutkas
2020-08-06 16:52:25 -07:00
committed by GitHub
parent d7994ca67d
commit b815718c26
6 changed files with 7 additions and 12 deletions

View File

@@ -119,6 +119,7 @@ namespace Wox.Test
{ {
Debug.WriteLine("SCORE: " + item.Score.ToString() + ", FoundString: " + item.Title); Debug.WriteLine("SCORE: " + item.Score.ToString() + ", FoundString: " + item.Title);
} }
Debug.WriteLine("###############################################"); Debug.WriteLine("###############################################");
Debug.WriteLine(""); Debug.WriteLine("");

View File

@@ -8,7 +8,6 @@ using Wox.Infrastructure.Exception;
namespace Wox.Test.Plugins namespace Wox.Test.Plugins
{ {
[TestFixture] [TestFixture]
public class PluginInitTest public class PluginInitTest
{ {

View File

@@ -15,11 +15,9 @@ using Microsoft.Plugin.Indexer.DriveDetection;
namespace Wox.Test.Plugins namespace Wox.Test.Plugins
{ {
[TestFixture] [TestFixture]
public class WindowsIndexerTest public class WindowsIndexerTest
{ {
public WindowsSearchAPI GetWindowsSearchAPI() public WindowsSearchAPI GetWindowsSearchAPI()
{ {
var mock = new Mock<ISearch>(); var mock = new Mock<ISearch>();
@@ -318,6 +316,5 @@ namespace Wox.Test.Plugins
// Act & Assert // Act & Assert
return _driveDetection.DisplayWarning(); return _driveDetection.DisplayWarning();
} }
} }
} }

View File

@@ -54,8 +54,6 @@ namespace Wox.Test
// Assert // Assert
Assert.IsTrue(testClass.isFunctionCalled); Assert.IsTrue(testClass.isFunctionCalled);
}
}
} }
} }