View | Details | Raw Unified | Return to bug 13607
Collapse All | Expand All

(-)a/t/Output_JSONStream.t (-1 / +1 lines)
Lines 36-39 is($json->output,'{}',"Making sure that clearing it clears it."); Link Here
36
36
37
is($json->content_type, 'json', 'Correct content type is returned');
37
is($json->content_type, 'json', 'Correct content type is returned');
38
38
39
is($json->true, JSON::True, 'True is true.');
39
is($json->true, JSON::true, 'True is true.');
(-)a/t/Output_XMLStream.t (-2 / +2 lines)
Lines 66-70 is($xml->true, '1', 'True is true.'); Link Here
66
66
67
sub trim {
67
sub trim {
68
    $_ = shift;
68
    $_ = shift;
69
    s/^\s*(.*?)\s*$/$1/r;
69
    $_ =~ s/^\s*(.*?)\s*$/$1/;
70
    return $_;
70
}
71
}
71
- 

Return to bug 13607