From 32523d2d2def4325a8b295bc6c2b71a688191a2d Mon Sep 17 00:00:00 2001 From: Evan Hemsley Date: Sat, 15 Jun 2019 16:45:33 -0700 Subject: [PATCH] remove debug print --- test/DirectedGraphTest.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/test/DirectedGraphTest.cs b/test/DirectedGraphTest.cs index 1aa9bc7..f38cb66 100644 --- a/test/DirectedGraphTest.cs +++ b/test/DirectedGraphTest.cs @@ -334,11 +334,6 @@ namespace Tests var cycleD = new int[] { 0, 3, 4, 5 }; var cycleE = new int[] { 0, 1, 6, 7, 8 }; - foreach (var cycle in result) - { - Console.WriteLine(string.Join(", ", cycle)); - } - result.Should().ContainEquivalentOf(cycleA); result.Should().ContainEquivalentOf(cycleB); result.Should().ContainEquivalentOf(cycleC);