From: Michael Orlitzky Date: Tue, 27 Dec 2011 03:38:46 +0000 (-0500) Subject: Remove an accidental line break and indentation. X-Git-Tag: 0.0.1~12 X-Git-Url: https://gitweb.michael.orlitzky.com/?p=hath.git;a=commitdiff_plain;h=b4397616550eff1141b094f3fe0c38a1b3caffb7 Remove an accidental line break and indentation. --- diff --git a/src/Cidr.hs b/src/Cidr.hs index 826c862..a07117d 100644 --- a/src/Cidr.hs +++ b/src/Cidr.hs @@ -425,8 +425,7 @@ test_combine_all3 = where cidr1 = fromJust $ cidr_from_string "10.0.0.16/32" cidr2 = fromJust $ cidr_from_string "10.0.0.17/32" - - cidr3 = fromJust $ cidr_from_string "10.0.0.18/32" + cidr3 = fromJust $ cidr_from_string "10.0.0.18/32" cidr4 = fromJust $ cidr_from_string "10.0.0.19/32" expected_cidrs = [fromJust $ cidr_from_string "10.0.0.16/30"] test_cidrs = [cidr1, cidr2, cidr3, cidr4]