From 974986161a4a64f7964ee5568a0cc920753c31c0 Mon Sep 17 00:00:00 2001 From: Rob Reynolds Date: Wed, 25 Mar 2020 16:05:38 -0500 Subject: [PATCH] (GH-1020) fix build Missed part of the commit in 22fe302116a54136ec167a2300c941999743967a. Ensure those brackets are there so the build is not failing. --- src/chocolatey.tests/TinySpec.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/chocolatey.tests/TinySpec.cs b/src/chocolatey.tests/TinySpec.cs index 9ccff1d130..7774e65fb7 100644 --- a/src/chocolatey.tests/TinySpec.cs +++ b/src/chocolatey.tests/TinySpec.cs @@ -154,7 +154,9 @@ public WindowsOnlyAttribute() Exclude = "Mono, Linux, MacOsX, Linux"; } - public WindowsOnlyAttribute(string platforms): base(platforms) + public WindowsOnlyAttribute(string platforms) : base(platforms) + { + } } public class IntegrationAttribute : CategoryAttribute