diff options
| author | franck cuny <franck@lumberjaph.net> | 2010-11-05 11:13:25 +0100 |
|---|---|---|
| committer | franck cuny <franck@lumberjaph.net> | 2010-11-05 11:13:25 +0100 |
| commit | 6b25cd79ccd0387814e4dc23cf06ff76a2ba13ea (patch) | |
| tree | 51143ede090ca4975c8cb859e17a431da3f83d98 /t/06-data.t | |
| parent | tidy + load position (diff) | |
| download | graph-gexf-6b25cd79ccd0387814e4dc23cf06ff76a2ba13ea.tar.gz | |
tidy
Diffstat (limited to 't/06-data.t')
| -rw-r--r-- | t/06-data.t | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/t/06-data.t b/t/06-data.t index 5df0bb9..91532f9 100644 --- a/t/06-data.t +++ b/t/06-data.t @@ -5,9 +5,9 @@ use Test::More; use Graph::GEXF; my $graph = Graph::GEXF->new(); -$graph->add_node_attribute('url', 'string', 'http://'); -$graph->add_node_attribute('indegree', 'float'); -$graph->add_node_attribute('frog', 'boolean'); +$graph->add_node_attribute('url', 'string',); +$graph->add_node_attribute('indegree', 'float', '0.0'); +$graph->add_node_attribute('frog', 'boolean', 1); my $n1 = $graph->add_node(0); $n1->label('Gephi'); |
