Uncomment File::deleteOnExit (#19624)

This commit is contained in:
Beppe Catanese 2024-09-22 18:18:06 +02:00 committed by GitHub
parent b4edca5ad4
commit e1a1d7ab5a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -60,7 +60,7 @@ public class GoGinServerCodegenTest {
DefaultGenerator generator = new DefaultGenerator();
List<File> files = generator.opts(configurator.toClientOptInput()).generate();
//files.forEach(File::deleteOnExit);
files.forEach(File::deleteOnExit);
TestUtils.assertFileContains(Paths.get(output + "/go/routers.go"),
"NewPetPost");