From: Nick Mathewson Date: Fri, 14 Sep 2012 14:00:47 +0000 (-0400) Subject: Remove a duplicate test in test_util_pow2 X-Git-Tag: tor-0.2.4.3-alpha~33 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=56bd3dd87ff35863ca0fd21aab339d65ba839479;p=thirdparty%2Ftor.git Remove a duplicate test in test_util_pow2 --- diff --git a/src/test/test_util.c b/src/test/test_util.c index 2a194ef840..2c65903ddb 100644 --- a/src/test/test_util.c +++ b/src/test/test_util.c @@ -1131,7 +1131,6 @@ test_util_pow2(void) test_eq(round_to_power_of_2(2), 2); test_eq(round_to_power_of_2(3), 2); test_eq(round_to_power_of_2(4), 4); - test_eq(round_to_power_of_2(4), 4); test_eq(round_to_power_of_2(5), 4); test_eq(round_to_power_of_2(6), 4); test_eq(round_to_power_of_2(7), 8);