@@ -80,32 +80,32 @@ get_test_times <- function() {
8080stringi :: stri_timezone_set(" Etc/GMT-14" )
8181times <- get_test_times()
8282for (i in seq_along(times ))
83- E(strftime(times [[i ]], " %Y-%m-%d" ), " 1970-01-01" , bad = " 1970-01-02" , bad = " 1969-12-31" , .comment = i )
83+ E(strftime(times [[i ]], " %Y-%m-%d" ), " 1970-01-01" , bad = " 1970-01-02" , bad = " 1969-12-31" , .comment = deparse( times [[ i ]]) )
8484
8585stringi :: stri_timezone_set(" Etc/GMT+12" )
8686times <- get_test_times()
8787for (i in seq_along(times ))
88- E(strftime(times [[i ]], " %Y-%m-%d" ), " 1970-01-01" , bad = " 1970-01-02" , bad = " 1969-12-31" , .comment = i )
88+ E(strftime(times [[i ]], " %Y-%m-%d" ), " 1970-01-01" , bad = " 1970-01-02" , bad = " 1969-12-31" , .comment = deparse( times [[ i ]]) )
8989
9090stringi :: stri_timezone_set(" UTC" )
9191times <- get_test_times()
9292for (i in seq_along(times ))
93- E(strftime(times [[i ]], " %Y-%m-%d" ), " 1970-01-01" , bad = " 1970-01-02" , bad = " 1969-12-31" , .comment = i )
93+ E(strftime(times [[i ]], " %Y-%m-%d" ), " 1970-01-01" , bad = " 1970-01-02" , bad = " 1969-12-31" , .comment = deparse( times [[ i ]]) )
9494
9595stringi :: stri_timezone_set(" Australia/Melbourne" )
9696times <- get_test_times()
9797for (i in seq_along(times ))
98- E(strftime(times [[i ]], " %Y-%m-%d" ), " 1970-01-01" , bad = " 1970-01-02" , bad = " 1969-12-31" , .comment = i )
98+ E(strftime(times [[i ]], " %Y-%m-%d" ), " 1970-01-01" , bad = " 1970-01-02" , bad = " 1969-12-31" , .comment = deparse( times [[ i ]]) )
9999
100100stringi :: stri_timezone_set(" Europe/Warsaw" )
101101times <- get_test_times()
102102for (i in seq_along(times ))
103- E(strftime(times [[i ]], " %Y-%m-%d" ), " 1970-01-01" , bad = " 1970-01-02" , bad = " 1969-12-31" , .comment = i )
103+ E(strftime(times [[i ]], " %Y-%m-%d" ), " 1970-01-01" , bad = " 1970-01-02" , bad = " 1969-12-31" , .comment = deparse( times [[ i ]]) )
104104
105105stringi :: stri_timezone_set(" America/Montreal" )
106106times <- get_test_times()
107107for (i in seq_along(times ))
108- E(strftime(times [[i ]], " %Y-%m-%d" ), " 1970-01-01" , bad = " 1970-01-02" , bad = " 1969-12-31" , .comment = i )
108+ E(strftime(times [[i ]], " %Y-%m-%d" ), " 1970-01-01" , bad = " 1970-01-02" , bad = " 1969-12-31" , .comment = deparse( times [[ i ]]) )
109109
110110
111111stringi :: stri_timezone_set(oldtz )
0 commit comments