aboutsummaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2012-09-14 10:00:47 -0400
committerNick Mathewson <nickm@torproject.org>2012-09-14 10:00:47 -0400
commit56bd3dd87ff35863ca0fd21aab339d65ba839479 (patch)
tree8cfa3ae2a5a7f77966210cf388f133c034618921 /src/test
parent6492a75b9f23ff4d22aa4b4ffa2fe4a4f7193bad (diff)
downloadtor-56bd3dd87ff35863ca0fd21aab339d65ba839479.tar
tor-56bd3dd87ff35863ca0fd21aab339d65ba839479.tar.gz
Remove a duplicate test in test_util_pow2
Diffstat (limited to 'src/test')
-rw-r--r--src/test/test_util.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/test/test_util.c b/src/test/test_util.c
index 2a194ef84..2c65903dd 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);