fix typo in Collation.pm test
Tara L Andrews [Sun, 7 Dec 2014 20:26:44 +0000 (20:26 +0000)]
base/lib/Text/Tradition/Collation.pm
base/t/text_tradition_collation.t

index f3f2322..22814f2 100644 (file)
@@ -542,14 +542,14 @@ WARNING: This operation cannot be undone.
 
 use Text::Tradition;
 
-my $t = Text::Tradition->new( input => 'CollateX', file => 't/data/CollateX-16.xml' );
+my $t = Text::Tradition->new( input => 'CollateX', file => 't/data/Collatex-16.xml' );
 my $c = $t->collation;
 my $n = scalar $c->readings;
 $c->compress_readings();
 is( scalar $c->readings, $n - 6, "Compressing readings seems to work" );
 
 # Now put in a join-word and make sure the thing still works.
-my $t2 = Text::Tradition->new( input => 'CollateX', file => 't/data/CollateX-16.xml' );
+my $t2 = Text::Tradition->new( input => 'CollateX', file => 't/data/Collatex-16.xml' );
 my $c2 = $t2->collation;
 # Split n21 ('unto') for testing purposes
 my $new_r = $c2->add_reading( { 'id' => 'n21p0', 'text' => 'un', 'join_next' => 1 } );
index bdd329e..b5e3ed1 100644 (file)
@@ -121,14 +121,14 @@ try {
 {
 use Text::Tradition;
 
-my $t = Text::Tradition->new( input => 'CollateX', file => 't/data/CollateX-16.xml' );
+my $t = Text::Tradition->new( input => 'CollateX', file => 't/data/Collatex-16.xml' );
 my $c = $t->collation;
 my $n = scalar $c->readings;
 $c->compress_readings();
 is( scalar $c->readings, $n - 6, "Compressing readings seems to work" );
 
 # Now put in a join-word and make sure the thing still works.
-my $t2 = Text::Tradition->new( input => 'CollateX', file => 't/data/CollateX-16.xml' );
+my $t2 = Text::Tradition->new( input => 'CollateX', file => 't/data/Collatex-16.xml' );
 my $c2 = $t2->collation;
 # Split n21 ('unto') for testing purposes
 my $new_r = $c2->add_reading( { 'id' => 'n21p0', 'text' => 'un', 'join_next' => 1 } );