aboutsummaryrefslogtreecommitdiffstats
path: root/ext
diff options
context:
space:
mode:
authorJeremy Evans <code@jeremyevans.net>2019-10-24 09:35:02 -0700
committerJeremy Evans <code@jeremyevans.net>2019-10-24 12:34:51 -0700
commit5fe8943fdaf765dc01d986abafe85bd3eafb7814 (patch)
treeac2a37420db152e3721c3854dec4978d7794ccdb /ext
parente8f90e73978c0321021c177fe3fa2623a8b3a4de (diff)
downloadruby-5fe8943fdaf765dc01d986abafe85bd3eafb7814.tar.gz
Fix typo causing Date.new(year, month) to fail
Add a test for this case.
Diffstat (limited to 'ext')
-rw-r--r--ext/date/date_core.c2
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");