diff options
author | Jeremy Evans <[email protected]> | 2019-10-24 09:35:02 -0700 |
---|---|---|
committer | Jeremy Evans <[email protected]> | 2019-10-24 12:34:51 -0700 |
commit | 5fe8943fdaf765dc01d986abafe85bd3eafb7814 (patch) | |
tree | ac2a37420db152e3721c3854dec4978d7794ccdb /ext/date/date_core.c | |
parent | e8f90e73978c0321021c177fe3fa2623a8b3a4de (diff) |
Fix typo causing Date.new(year, month) to fail
Add a test for this case.
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/2605
Diffstat (limited to 'ext/date/date_core.c')
-rw-r--r-- | ext/date/date_core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/date/date_core.c b/ext/date/date_core.c index decaec2d59..6301fe60ee 100644 --- a/ext/date/date_core.c +++ b/ext/date/date_core.c @@ -3438,7 +3438,7 @@ date_initialize(int argc, VALUE *argv, VALUE self) check_numeric(vd, "day"); num2int_with_frac(d, positive_inf); case 2: - check_numeric(vd, "month"); + check_numeric(vm, "month"); m = NUM2INT(vm); case 1: check_numeric(vy, "year"); |