Remove the application created to perform the unit test so we don't 'leak' dummy applications

This commit is contained in:
Chris Morgan
2006-07-17 20:41:18 +00:00
committed by WineHQ
parent 8bdf80982f
commit a41a3577ce

View File

@@ -463,6 +463,10 @@ function test_user_getAppsMaintained()
/* remove maintainership for this user */
$oUser->deleteMaintainer($iAppId);
/* remove this application */
$oApp = new Application($iAppId);
$oApp->delete();
return true;
}