We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e66f5dc commit af82d40Copy full SHA for af82d40
1 file changed
inst/tests/tests.Rraw
@@ -14473,8 +14473,8 @@ options(datatable.rbindlist.check=NULL) # this option is set to NULL at the top
14473
if (.Platform$OS.type == 'windows') local({
14474
lc_collate <- Sys.getlocale(c('LC_COLLATE'))
14475
lc_ctype <- Sys.getlocale(c('LC_CTYPE'))
14476
- Sys.setlocale('LC_COLLATE', "Chinese (Simplified)_China.936")
14477
- Sys.setlocale('LC_CTYPE', "Chinese (Simplified)_China.936")
+ suppressWarnings(Sys.setlocale('LC_COLLATE', "Chinese (Simplified)_China.936")) ## fix CRAN warning #5696
+ suppressWarnings(Sys.setlocale('LC_CTYPE', "Chinese (Simplified)_China.936"))
14478
on.exit({
14479
Sys.setlocale('LC_COLLATE', lc_collate)
14480
Sys.setlocale('LC_CTYPE', lc_ctype)
0 commit comments