From e1a83d9f70c9110139ccb3219860ea486d2f55e6 Mon Sep 17 00:00:00 2001 From: Marco Ferrari Date: Fri, 6 Nov 2020 22:13:57 +0100 Subject: [PATCH] Fix C# good test --- .automation/test/csharp/csharp_good_01.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.automation/test/csharp/csharp_good_01.cs b/.automation/test/csharp/csharp_good_01.cs index 971f3d07..b17954e5 100644 --- a/.automation/test/csharp/csharp_good_01.cs +++ b/.automation/test/csharp/csharp_good_01.cs @@ -4,9 +4,9 @@ namespace HelloWorld { class Program { - static void Main(string[] args) - { - Console.WriteLine("Hello World!"); - } + static void Main(string[] args) + { + Console.WriteLine("Hello World!"); + } } }