Try to fix a QA not working test on W10/msys2.

Probably due to a not closed file when trying to delete it.
This commit is contained in:
jean-pierre charras 2023-12-07 20:01:22 +01:00
parent ccb935db4a
commit 096bcff160
1 changed files with 2 additions and 1 deletions

View File

@ -91,7 +91,7 @@ BOOST_FIXTURE_TEST_CASE( FootprintPrettifier, PRETTIFIER_TEST_FIXTURE )
std::string goldenPath = fmt::format( "{}prettifier/{}_formatted.kicad_mod",
KI_TEST::GetPcbnewTestDataDir(),
footprint.ToStdString() );
{
std::ifstream test( newPath );
std::ifstream golden( goldenPath );
@ -105,6 +105,7 @@ BOOST_FIXTURE_TEST_CASE( FootprintPrettifier, PRETTIFIER_TEST_FIXTURE )
std::istreambuf_iterator<char>(),
std::istreambuf_iterator<char>( golden.rdbuf() ) ),
"Formatted footprints do not match!" );
}
std::filesystem::remove( newPath );
}