Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fixed typo in test
  • Loading branch information
kraih committed May 15, 2013
1 parent caa1af3 commit b95c9a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t/mojo/json.t
Expand Up @@ -299,7 +299,7 @@ is $json->encode({test => [$num, $str]}), '{"test":[1,0]}',
# "inf" and "nan"
like $json->encode({test => 9**9**9}), qr/^{"test":".*"}$/,
'encode "inf" as string';
like $json->encode({test => -sin(9**9**9)}), qr/{"test":".*"}$/,
like $json->encode({test => -sin(9**9**9)}), qr/^{"test":".*"}$/,
'encode "nan" as string';

# Errors
Expand Down

0 comments on commit b95c9a2

Please sign in to comment.