Skip to content

Commit

Permalink
[#224 state:resolved] Switched unit test to utilize $app->query() to …
Browse files Browse the repository at this point in the history
…eliminate code path that was triggering a series of warnings.
  • Loading branch information
byrnereese committed Oct 8, 2010
1 parent 66c6148 commit 0a7b323
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion t/21-app-callbacks.t
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ $q->param(status => 1);
# $q->param(password => 'bass');
$q->param(text => "Buddha blessed and boo-ya blasted;
these are the words that she manifested.");
$cms->{query} = $q;
#$cms->{query} = $q;
$cms->query($q);
$cms->{perms} = MT::Permission->new();
$cms->{perms}->can_post(1);
$cms->{author} = MT::Author->new();
Expand Down

0 comments on commit 0a7b323

Please sign in to comment.