From 95d90a7f9da7b4de9d295f2cb8523cf1bed209f4 Mon Sep 17 00:00:00 2001 From: henricasanova Date: Wed, 2 Oct 2019 18:47:05 -1000 Subject: [PATCH] (#2) test passed ++ --- test/compute_services/WorkunitExecutorTest.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/compute_services/WorkunitExecutorTest.cpp b/test/compute_services/WorkunitExecutorTest.cpp index d5114f007e..d0574fdc56 100644 --- a/test/compute_services/WorkunitExecutorTest.cpp +++ b/test/compute_services/WorkunitExecutorTest.cpp @@ -140,11 +140,11 @@ void WorkunitExecutorTest::do_WorkunitConstructor_test() { // Create a Storage Service ASSERT_NO_THROW(storage_service1 = simulation->add( - new wrench::SimpleStorageService(hostname, {"/"}))); + new wrench::SimpleStorageService(hostname, {"/disk1/"}))); // Create another Storage Service ASSERT_NO_THROW(storage_service2 = simulation->add( - new wrench::SimpleStorageService(hostname, {"/"}))); + new wrench::SimpleStorageService(hostname, {"/disk2/"}))); // Create workflow filess wrench::WorkflowFile *input_file = this->workflow->addFile("input_file", 10000000.0);