Skip to content

Commit ce89ac0

Browse files
committed
Remove .R extension
1 parent a713ca7 commit ce89ac0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

R/test-app.R

+2-1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ testApp <- function(appDir = ".", testnames = NULL, quiet = FALSE,
5858

5959
# Keep only specified files
6060
found_testnames <- found_testnames[idx]
61+
found_testnames_no_ext <- found_testnames_no_ext[idx]
6162
}
6263

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

9495
# Compare all results
9596
return(
96-
snapshotCompare(appDir, testnames = testnames, quiet = quiet,
97+
snapshotCompare(appDir, testnames = found_testnames_no_ext, quiet = quiet,
9798
images = compareImages, interactive = interactive)
9899
)
99100
}

0 commit comments

Comments
 (0)