<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">diff -bu ./t/row/numifyget.t~ ./t/row/numifyget.t
--- ./t/row/numifyget.t~	2013-07-02 20:40:24.000000000 -0500
+++ ./t/row/numifyget.t	2013-07-25 10:01:23.852572001 -0500
@@ -19,9 +19,9 @@
    my $value = shift;
    my $b_obj = B::svref_2object(\$value);
    my $flags = $b_obj-&gt;FLAGS;
-   return ( $flags &amp; B::SVf_IOK or $flags &amp; B::SVp_IOK
+   return (( $flags &amp; B::SVf_IOK or $flags &amp; B::SVp_IOK
           or $flags &amp; B::SVf_NOK or $flags &amp; B::SVp_NOK
-        ) and !($flags &amp; B::SVf_POK )
+           ) and !($flags &amp; B::SVf_POK ))
 }
 
 ok(is_numeric($schema-&gt;resultset('Foo')-&gt;first-&gt;bar_id),"bar_id has been 'numified' w/o is_numeric set");
</pre></body></html>