From 3a93bfde4e2dc161f6436062ee75c99e101c6541 Mon Sep 17 00:00:00 2001 From: Bruce Forstall Date: Wed, 9 Nov 2016 19:58:31 -0800 Subject: [PATCH] Remove unnecessary newline in WriteLine (#8047) --- tests/src/JIT/SIMD/VectorUtil.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/src/JIT/SIMD/VectorUtil.cs b/tests/src/JIT/SIMD/VectorUtil.cs index d1b669d..6501aac 100644 --- a/tests/src/JIT/SIMD/VectorUtil.cs +++ b/tests/src/JIT/SIMD/VectorUtil.cs @@ -309,7 +309,7 @@ class JitLog : IDisposable } if (simdIntrinsicsSupported && methodFound) { - Console.WriteLine("Method " + method + " was compiled but should not have been\n"); + Console.WriteLine("Method " + method + " was compiled but should not have been"); return false; } // Useful when developing / debugging just to be sure that we reached here: -- 2.7.4