Skip to content

Commit

Permalink
📝 small fixes for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ecoisilva committed Aug 15, 2024
1 parent 02e5b69 commit 325d0ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions R/global.R
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ utils::globalVariables(
"longitude", "latitude",
"time", "timestamp", "lag",

"device",
"duration", "dur",
"interval", "dti", "dti_notes",

Expand Down
2 changes: 1 addition & 1 deletion R/mod_tab_data_upload.R
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,7 @@ mod_tab_data_upload_server <- function(id, rv) {
error = function(e) e)
}

if (any(grepl("ï..", colnames(out_file)))) {
if (any(grepl("\u00EF..", colnames(out_file)))) {
out_file <- tryCatch(read.table(
file = input$file_csv$datapath,
header = TRUE,
Expand Down

0 comments on commit 325d0ef

Please sign in to comment.