Skip to content

Commit

Permalink
Fix cut n paste error
Browse files Browse the repository at this point in the history
  • Loading branch information
DrHyde committed Nov 9, 2011
1 parent e91fce0 commit 7ac7db8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t/02_weird_little_islands.t
Expand Up @@ -15,7 +15,7 @@ ok($number->is_mobile(), "07624 detected as being mobile");
is($number->format(), '+44 7624000000', "format() method works");
is(join(', ', sort $number->type()), 'is_allocated, is_mobile, is_valid', "type() works");

my $number = Number::Phone->new('+44 1624 500000');
$number = Number::Phone->new('+44 1624 500000');
isa_ok($number, 'Number::Phone::IM', "isa N::P::IM");
isa_ok($number, 'Number::Phone::UK', "isa N::P::UK by inheritance");
is($number->country(), 'IM', "country() method works");
Expand Down

0 comments on commit 7ac7db8

Please sign in to comment.