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

@@ -16,7 +16,7 @@ namespace Wox.Test
{
var nonGlobalPlugins = new Dictionary<string, PluginPair>
{
{">", new PluginPair {Metadata = new PluginMetadata {ActionKeywords = new List<string> {">"}}}}
{ ">", new PluginPair { Metadata = new PluginMetadata { ActionKeywords = new List<string> { ">" } } } }
};
Query q = QueryBuilder.Build("> file.txt file2 file3", nonGlobalPlugins);
@@ -30,7 +30,7 @@ namespace Wox.Test
{
var nonGlobalPlugins = new Dictionary<string, PluginPair>
{
{">", new PluginPair {Metadata = new PluginMetadata {ActionKeywords = new List<string> {">"}, Disabled = true}}}
{ ">", new PluginPair { Metadata = new PluginMetadata { ActionKeywords = new List<string> { ">" }, Disabled = true } } }
};
Query q = QueryBuilder.Build("> file.txt file2 file3", nonGlobalPlugins);