From: Tara L Andrews Date: Thu, 21 Apr 2011 11:08:58 +0000 (+0200) Subject: ...and fix the namespace in the tests X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=67ecdf379c0f8e03580f643808aba61a794a63e3;p=scpubgit%2Fstemmatology.git ...and fix the namespace in the tests --- diff --git a/t/graph.t b/t/graph.t index 91f9311..032246a 100644 --- a/t/graph.t +++ b/t/graph.t @@ -3,7 +3,7 @@ use strict; use warnings; use Test::More; use lib 'lib'; -use Traditions::Graph; +use Text::Tradition::Graph; use XML::LibXML; use XML::LibXML::XPathContext; @@ -12,7 +12,7 @@ my $datafile = 't/data/Collatex-16.xml'; open( GRAPHFILE, $datafile ) or die "Could not open $datafile"; my @lines = ; close GRAPHFILE; -my $graph = Traditions::Graph->new( 'GraphML' => join( '', @lines ) ); +my $graph = Text::Tradition::Graph->new( 'GraphML' => join( '', @lines ) ); # Test the svg creation my $parser = XML::LibXML->new();