Skip to content

Commit d8adb8d

Browse files
committed
Fixed file CLUSTER file paths
1 parent 4208edd commit d8adb8d

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

tests/testthat/connection_to_datasets/init_studies_datasets.R

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@ init.studies.dataset.cluster.int <- function(variables)
6363
if (ds.test_env$secure_login_details)
6464
{
6565
#reading data from local files
66-
ds.test_env$local.values.1 <- read.csv("data_files/CLUSTER_INT/CLUSTER_INT1.csv", header = TRUE)
67-
ds.test_env$local.values.2 <- read.csv("data_files/CLUSTER_INT/CLUSTER_INT2.csv", header = TRUE)
68-
ds.test_env$local.values.3 <- read.csv("data_files/CLUSTER_INT/CLUSTER_INT3.csv", header = TRUE)
66+
ds.test_env$local.values.1 <- read.csv("data_files/CLUSTER/CLUSTER_INT1.csv", header = TRUE)
67+
ds.test_env$local.values.2 <- read.csv("data_files/CLUSTER/CLUSTER_INT2.csv", header = TRUE)
68+
ds.test_env$local.values.3 <- read.csv("data_files/CLUSTER/CLUSTER_INT3.csv", header = TRUE)
6969
ds.test_env$local.values <- rbind(ds.test_env$local.values.1,ds.test_env$local.values.2,ds.test_env$local.values.3)
7070
if (ds.test_env$driver == "OpalDriver")
7171
{
@@ -89,9 +89,9 @@ init.studies.dataset.cluster.slo <- function(variables)
8989
if (ds.test_env$secure_login_details)
9090
{
9191
#reading data from local files
92-
ds.test_env$local.values.1 <- read.csv("data_files/CLUSTER_SLO/CLUSTER_SLO1.csv", header = TRUE)
93-
ds.test_env$local.values.2 <- read.csv("data_files/CLUSTER_SLO/CLUSTER_SLO2.csv", header = TRUE)
94-
ds.test_env$local.values.3 <- read.csv("data_files/CLUSTER_SLO/CLUSTER_SLO3.csv", header = TRUE)
92+
ds.test_env$local.values.1 <- read.csv("data_files/CLUSTER/CLUSTER_SLO1.csv", header = TRUE)
93+
ds.test_env$local.values.2 <- read.csv("data_files/CLUSTER/CLUSTER_SLO2.csv", header = TRUE)
94+
ds.test_env$local.values.3 <- read.csv("data_files/CLUSTER/CLUSTER_SLO3.csv", header = TRUE)
9595
ds.test_env$local.values <- rbind(ds.test_env$local.values.1,ds.test_env$local.values.2,ds.test_env$local.values.3)
9696
if (ds.test_env$driver == "OpalDriver")
9797
{

0 commit comments

Comments
 (0)