about summary refs log tree commit diff
path: root/aoc2019/Day11.cs
diff options
context:
space:
mode:
authorBen Harris <ben@tilde.team>2020-12-16 18:34:26 -0500
committerBen Harris <ben@tilde.team>2020-12-16 18:34:26 -0500
commit51eb4a3b75a57c8ea9342121c220fb3bfa783b27 (patch)
tree2531632d4c68764e18824ae453bd64b9dbae6227 /aoc2019/Day11.cs
parentcb10768fa14c4b6ec19d050e13a0c3e00c152874 (diff)
use \n for newlines in expected test answer
Diffstat (limited to 'aoc2019/Day11.cs')
-rw-r--r--aoc2019/Day11.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/aoc2019/Day11.cs b/aoc2019/Day11.cs
index bce7cce..31a5d88 100644
--- a/aoc2019/Day11.cs
+++ b/aoc2019/Day11.cs
@@ -1,4 +1,3 @@
-using System;
 using System.Collections.Generic;
 using System.Linq;
 using aoc2019.lib;
@@ -98,7 +97,7 @@ namespace aoc2019
                         .ToDelimitedString()
                 )
                 .Reverse()
-                .ToDelimitedString(Environment.NewLine);
+                .ToDelimitedString("\n");
         }
 
         private enum Direction