Skip to content

Commit

Permalink
lol I converted the numbers wrong for the specs
Browse files Browse the repository at this point in the history
  • Loading branch information
jgaskins committed Dec 3, 2024
1 parent 06e5e09 commit a3caf46
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/pg/numeric_spec.cr
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ describe PG::Numeric do
{"nan", bd(0, 1)},
{"0", bd(0, 1)},
{"0.0", bd(0, 1)},
{"1", bd(1, 1)},
{"-1", bd(-1, 1)},
{"1", bd(1, 0)},
{"-1", bd(-1, 0)},
{"1.3", bd(13, 1)},
{"1.30", bd(13, 1)},
{"12345.6789123", bd(123456789123, 7)},
Expand Down

0 comments on commit a3caf46

Please sign in to comment.