Skip to content

Commit d5cfd78

Browse files
authored
Adjust format to not tickle change in R-devel (closes #1347) (#1348)
1 parent 83e640b commit d5cfd78

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

ChangeLog

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
* DESCRIPTION (Version, Date): Roll micro version to 1.0.13.6
44
* inst/include/Rcpp/config.h (RCPP_DEV_VERSION): Idem
55

6+
* inst/tinytest/test_date.R: Minor adjustment to datetime format test
7+
following R Dev Day change for R bug 17350 (and issue #1347 here)
8+
69
2024-11-25 Simon Guest <[email protected]>
710

811
* src/attributes.cpp: fix CPP source having to be writable

inst/tinytest/test_date.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ expect_equal(Datetime_format(d,"%Y-%m-%d %H:%M:%S"),
194194
format(d, "%Y-%m-%d %H:%M:%OS"),
195195
info="Datetime.formating.default")
196196
expect_equal(Datetime_format(d, "%Y/%m/%d %H:%M:%S"),
197-
format(d, "%Y/%m/%d %H:%M:%OS"),
197+
format(d, "%Y/%m/%d %H:%M:%OS6"),
198198
info="Datetime.formating.given.format")
199199
expect_equal(Datetime_ostream(d),
200200
format(d, "%Y-%m-%d %H:%M:%OS"),

0 commit comments

Comments
 (0)