Skip to content

Commit

Permalink
double removal
Browse files Browse the repository at this point in the history
  • Loading branch information
henricasanova committed Oct 16, 2024
1 parent 7c74307 commit 5d8a3ec
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,11 @@ class SimulationTimestampFileReadTest : public ::testing::Test {

workflow = wrench::Workflow::createWorkflow();

file_1 = wrench::Simulation::addFile("file_1", 100);
file_2 = wrench::Simulation::addFile("file_2", 100);
file_3 = wrench::Simulation::addFile("file_3", 100);
file_1 = wrench::Simulation::addFile("file_1", 100ULL);
file_2 = wrench::Simulation::addFile("file_2", 100ULL);
file_3 = wrench::Simulation::addFile("file_3", 100ULL);

xl_file = wrench::Simulation::addFile("xl_file", 1000000000);
xl_file = wrench::Simulation::addFile("xl_file", 1000000000ULL);
}

std::string platform_file_path = UNIQUE_TMP_PATH_PREFIX + "platform.xml";
Expand Down Expand Up @@ -167,7 +167,7 @@ void SimulationTimestampFileReadTest::do_SimulationTimestampFileReadBasic_test()

ASSERT_NO_THROW(file_registry_service = simulation->add(new wrench::FileRegistryService(host1)));

std::shared_ptr<wrench::ExecutionController> wms = nullptr;
std::shared_ptr<wrench::ExecutionController> wms;

ASSERT_NO_THROW(wms = simulation->add(new SimulationTimestampFileReadBasicTestWMS(
this, host1)));
Expand Down

0 comments on commit 5d8a3ec

Please sign in to comment.