From 7486ddb784596d68d5a2c4fb038c60743c80b96e Mon Sep 17 00:00:00 2001 From: Thomas Hughes Date: Tue, 25 Aug 2020 14:31:13 -0500 Subject: [PATCH] Update C# Bad test (curly brace should be newline) --- .automation/test/csharp/csharp_bad_01.cs | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.automation/test/csharp/csharp_bad_01.cs b/.automation/test/csharp/csharp_bad_01.cs index 63144941..132f5d24 100644 --- a/.automation/test/csharp/csharp_bad_01.cs +++ b/.automation/test/csharp/csharp_bad_01.cs @@ -1,12 +1,9 @@ using System; -namespace HelloWorld -{ - class Program - { - static void Main(string[] args) - { - Console.WriteLine(Hello World); +namespace HelloWorld { + class Program { + static void Main(string[] args) { + Console.WriteLine("Hello World"); } } }