From d81db91b72caf5c6b699939fe504ec0fcb7ec373 Mon Sep 17 00:00:00 2001 From: Jeremy Wu Date: Thu, 28 Jan 2021 21:48:44 +1100 Subject: [PATCH] fix formatting --- Flow.Launcher.Test/FuzzyMatcherTest.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Flow.Launcher.Test/FuzzyMatcherTest.cs b/Flow.Launcher.Test/FuzzyMatcherTest.cs index f2cdd7bac..78c918b61 100644 --- a/Flow.Launcher.Test/FuzzyMatcherTest.cs +++ b/Flow.Launcher.Test/FuzzyMatcherTest.cs @@ -41,7 +41,7 @@ namespace Flow.Launcher.Test Enum.GetValues(typeof(SearchPrecisionScore)) .Cast() .ToList() - .ForEach(x => listToReturn.Add((int) x)); + .ForEach(x => listToReturn.Add((int)x)); return listToReturn; } @@ -183,7 +183,7 @@ namespace Flow.Launcher.Test $"Query:{queryString}{Environment.NewLine} " + $"Compare:{compareString}{Environment.NewLine}" + $"Raw Score: {matchResult.RawScore}{Environment.NewLine}" + - $"Precision Score: {(int) expectedPrecisionScore}"); + $"Precision Score: {(int)expectedPrecisionScore}"); } [TestCase("exce", "OverLeaf-Latex: An online LaTeX editor", SearchPrecisionScore.Regular, false)]