Skip to content

Commit

Permalink
fixed warning in template.t
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Jul 16, 2009
1 parent 5d50380 commit 19f7cac
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions Changes
@@ -1,5 +1,8 @@
This file documents the revision history for Perl extension Mojo.

0.991239 2009-07-16 00:00:00
- Fixed warning template.t.

0.991238 2009-07-16 00:00:00
- Fixed all shebang lines.

Expand Down
2 changes: 1 addition & 1 deletion lib/Mojo.pm
Expand Up @@ -18,7 +18,7 @@ __PACKAGE__->attr('home', default => sub { Mojo::Home->new });
__PACKAGE__->attr('log', default => sub { Mojo::Log->new });

# Oh, so they have internet on computers now!
our $VERSION = '0.991238';
our $VERSION = '0.991239';

sub new {
my $self = shift->SUPER::new(@_);
Expand Down
2 changes: 1 addition & 1 deletion t/mojo/template.t
Expand Up @@ -80,7 +80,7 @@ is($output->line->[0], 5);
is($output->line->[1], 'test');
$output->message("oops!\n");
$output->stack([['Foo', 'foo', 23], ['Bar', 'bar', 24]]);
my $backup = $ENV{MOJO_EXCEPTION_VERBOSE};
my $backup = $ENV{MOJO_EXCEPTION_VERBOSE} || '';
$ENV{MOJO_EXCEPTION_VERBOSE} = 0;
is("$output", <<'EOF');
Error around line 5.
Expand Down

0 comments on commit 19f7cac

Please sign in to comment.