From ce89ac070de0463bc2adf148072f635b54a53a53 Mon Sep 17 00:00:00 2001 From: Winston Chang Date: Wed, 29 Nov 2017 14:22:06 -0600 Subject: [PATCH] Remove .R extension --- R/test-app.R | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/R/test-app.R b/R/test-app.R index 867e45a9..1441fccd 100644 --- a/R/test-app.R +++ b/R/test-app.R @@ -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) { @@ -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) ) }