Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix signature of is()
  • Loading branch information
FROGGS committed May 18, 2013
1 parent d411631 commit 50e2cf5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions t/test.pl
Expand Up @@ -5,7 +5,7 @@
sub _pass(*@args) { pass(|@args) }
sub _ok(*@args) { ok(|@args) }
sub _nok(*@args) { nok(|@args) }
sub _is(*@args) { is(|@args) }
sub _is($a, $b, $c) { is($a, $b, $c) }
sub _isnt(*@args) { isnt(|@args) }
sub _is_approx(*@args) { is_approx(|@args) }
sub _todo(*@args) { todo(|@args) }
Expand All @@ -32,7 +32,7 @@
sub pass { _pass(@_) }
sub ok { _ok(@_) }
sub nok { _nok(@_) }
sub is { _is(@_) }
sub is { _is($_[0], $_[1], $_[2]) }
sub isnt { _isnt(@_) }
sub is_approx { _is_approx(@_) }
sub todo { _todo(@_) }
Expand Down

0 comments on commit 50e2cf5

Please sign in to comment.