Skip to content

Commit

Permalink
Remove .R extension
Browse files Browse the repository at this point in the history
  • Loading branch information
wch committed Nov 29, 2017
1 parent a713ca7 commit ce89ac0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion R/test-app.R
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ testApp <- function(appDir = ".", testnames = NULL, quiet = FALSE,

# Keep only specified files
found_testnames <- found_testnames[idx]
found_testnames_no_ext <- found_testnames_no_ext[idx]
}

if (length(found_testnames) == 0) {
Expand Down Expand Up @@ -93,7 +94,7 @@ testApp <- function(appDir = ".", testnames = NULL, quiet = FALSE,

# Compare all results
return(
snapshotCompare(appDir, testnames = testnames, quiet = quiet,
snapshotCompare(appDir, testnames = found_testnames_no_ext, quiet = quiet,
images = compareImages, interactive = interactive)
)
}
Expand Down

0 comments on commit ce89ac0

Please sign in to comment.