From a41a3577ce412fc487a895e42739c8092fed6bda Mon Sep 17 00:00:00 2001 From: Chris Morgan Date: Mon, 17 Jul 2006 20:41:18 +0000 Subject: [PATCH] Remove the application created to perform the unit test so we don't 'leak' dummy applications --- unit_test/test_user.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/unit_test/test_user.php b/unit_test/test_user.php index 5f9e51f..5f3fceb 100644 --- a/unit_test/test_user.php +++ b/unit_test/test_user.php @@ -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; }