Skip to content

Commit

Permalink
Use area b and c
Browse files Browse the repository at this point in the history
  • Loading branch information
payetvin committed Jul 25, 2024
1 parent bea6576 commit e4e6571
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/tests/src/libs/antares/study/test_study.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -304,9 +304,9 @@ BOOST_FIXTURE_TEST_CASE(check_filename_limit, OneAreaStudy)
#ifdef YUNI_OS_WINDOWS
std::string area1name(128, 'a');
std::string area2name(128, 'b');
study->areas[0]->name = area1name;
auto areaB = study->areaAdd(area2name);
AreaAddLinkBetweenAreas(areaA, areaB);
auto areaB = study->areaAdd(area1name);
auto areaC = study->areaAdd(area2name);
AreaAddLinkBetweenAreas(areaB, areaC);
BOOST_CHECK(!study->checkForFilenameLimits(true));
#endif
}
Expand Down

0 comments on commit e4e6571

Please sign in to comment.