summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordoy <doy@tozt.net>2008-12-15 04:43:31 -0500
committerdoy <doy@tozt.net>2008-12-15 04:43:31 -0500
commit5da8be592d87b2b04d920f085315fad662db6872 (patch)
tree31d3590660c364daa0b00e7dc3e72c1a8fd40304
parent88b075810f017a20d9e5740a3731805895004006 (diff)
downloadgraph-implicit-5da8be592d87b2b04d920f085315fad662db6872.tar.gz
graph-implicit-5da8be592d87b2b04d920f085315fad662db6872.zip
remove testing comment
-rw-r--r--t/001-basic.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/001-basic.t b/t/001-basic.t
index e0415d0..ca12425 100644
--- a/t/001-basic.t
+++ b/t/001-basic.t
@@ -57,7 +57,7 @@ my %reachable_edges = (
e => [map { @{ $edges{$_} } } @{ $reachable{e} }],
f => [map { @{ $edges{$_} } } @{ $reachable{f} }],
g => [map { @{ $edges{$_} } } @{ $reachable{g} }],
- h => [map { @{ $edges{$_} } } @{ $reachable{h} }], # [[g=>g],[h=>f],[h=>g]]
+ h => [map { @{ $edges{$_} } } @{ $reachable{h} }],
);
for my $vertex (qw/a b c d e f g h/) {
cmp_bag([$graph->edges($vertex)], $reachable_edges{$vertex},