tests/app_server: fix loop direction

Change-Id: Ifb9324a8cd5d9cf4c2ed2016cd597673955007e7
This commit is contained in:
Máximo Castañeda 2023-02-10 12:27:56 +01:00
parent b4567c396c
commit c83c6cde11

View File

@ -108,7 +108,7 @@ TestWindow::TestWindow(const char* title)
TestWindow::~TestWindow()
{
for (int32 i = fTests.CountItems() - 1; i >= 0; i++)
for (int32 i = fTests.CountItems() - 1; i >= 0; i--)
delete (Test*)fTests.ItemAt(i);
}