From 42f00ae3730b048eeda9ea3f08ba93b7a45b83e3 Mon Sep 17 00:00:00 2001 From: Anthony Sena Date: Wed, 21 Aug 2024 17:31:00 -0400 Subject: [PATCH] Fix rdms test --- tests/testthat/test-EvidenceSynthesisModule.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/testthat/test-EvidenceSynthesisModule.R b/tests/testthat/test-EvidenceSynthesisModule.R index 4178f975..15d36d3f 100644 --- a/tests/testthat/test-EvidenceSynthesisModule.R +++ b/tests/testthat/test-EvidenceSynthesisModule.R @@ -311,7 +311,7 @@ test_that("Include only allowed SCCS estimates in meta-analysis", { }) test_that("Output conforms to results model", { - model <- CohortGenerator::readCsv(file.path(testResultsFolder, "resultsDataModelSpecification.csv")) + model <- CohortGenerator::readCsv(file.path(testResultsFolder, "EvidenceSynthesisModule", "resultsDataModelSpecification.csv")) tables <- unique(model$tableName) for (table in tables) { data <- readr::read_csv(file.path(testResultsFolder, sprintf("%s.csv", table)), show_col_types = FALSE)