From b311fbf038a0fdacbd0ae05712b4864d8b6e8f8b Mon Sep 17 00:00:00 2001 From: Sam Minnee Date: Tue, 10 Jan 2012 17:28:11 +1300 Subject: [PATCH] MINOR: Always flush the manifest when using sapphire/test/bootstrap.php --- tests/bootstrap.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/bootstrap.php b/tests/bootstrap.php index da81eb645..50b2b2fb3 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -30,6 +30,9 @@ if(isset($_SERVER['argv'][2])) { $_REQUEST = $_GET; } +// Always flush the manifest for phpunit test runs +$_GET['flush'] = 1; + // Connect to database require_once(getcwd()."/sapphire/core/Core.php"); global $databaseConfig;