From ee5a0ce946dbc4aa69c318f9833451a76981640d Mon Sep 17 00:00:00 2001 From: Marco Ferrari Date: Fri, 6 Nov 2020 21:56:52 +0100 Subject: [PATCH] Fix C# good test --- .automation/test/csharp/csharp_good_01.cs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.automation/test/csharp/csharp_good_01.cs b/.automation/test/csharp/csharp_good_01.cs index a68542dc..971f3d07 100644 --- a/.automation/test/csharp/csharp_good_01.cs +++ b/.automation/test/csharp/csharp_good_01.cs @@ -2,11 +2,11 @@ using System; namespace HelloWorld { - class Program - { - static void Main(string[] args) - { - Console.WriteLine("Hello World!"); - } - } + class Program + { + static void Main(string[] args) + { + Console.WriteLine("Hello World!"); + } + } }