Skip to content

Commit

Permalink
Fixed uninitialized variable warning. Test still failing
Browse files Browse the repository at this point in the history
  • Loading branch information
jayallen committed Mar 16, 2009
1 parent 3071b78 commit a9b2672
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t/28-xmlrpc.t
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ my @apis = (
$author = MT::Author->load({ name => 'Bob D' });
is($result->[1]->{userid}, $author->id);
is($result->[1]->{postid}, $entry->id);
my $ao = sprintf "%04d%02d%02dT%02d:%02d:%02d",
$ao = sprintf "%04d%02d%02dT%02d:%02d:%02d",
unpack 'A4A2A2A2A2A2', $entry->authored_on;
is($result->[1]->{dateCreated}, $ao);
is($result->[1]->{content}, $entry->text);
Expand Down

0 comments on commit a9b2672

Please sign in to comment.