Changeset 878

Show
Ignore:
Timestamp:
11/19/06 18:58:08 (2 years ago)
Author:
dom
Message:

Compile time fixes.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/t/74_ping_plugin.t

    r874 r878  
    5555    ok($guide, "Made the guide OK"); 
    5656 
    57     my @plugins = @{ $guide->wiki->{_registered_plugins} }; 
     57    @plugins = @{ $guide->wiki->{_registered_plugins} }; 
    5858    is( scalar @plugins, 3, "Has plugin now" ); 
    5959    ok( $plugins[2]->isa( "Wiki::Toolkit::Plugin" ), "Right plugin" ); 
     
    6464    my @snames = sort keys %services; 
    6565    is( scalar @snames, 2, "Has 2 services as expected" ); 
    66     is( @snames[0], "geourl", "Right service" ); 
    67     is( @snames[1], "pingerati", "Right service" ); 
     66    is( $snames[0], "geourl", "Right service" ); 
     67    is( $snames[1], "pingerati", "Right service" ); 
    6868}