From 316077f9f8646fe6c1e6a882d73e6b1a7a9c9542 Mon Sep 17 00:00:00 2001 From: diosmosis <benakamoorthi@fastmail.fm> Date: Sat, 22 Mar 2014 06:57:02 +0000 Subject: [PATCH] Call base setUp() in IntegrationTestCase. --- tests/PHPUnit/IntegrationTestCase.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/PHPUnit/IntegrationTestCase.php b/tests/PHPUnit/IntegrationTestCase.php index 3a38db34fb..2851d80a68 100755 --- a/tests/PHPUnit/IntegrationTestCase.php +++ b/tests/PHPUnit/IntegrationTestCase.php @@ -105,6 +105,8 @@ abstract class IntegrationTestCase extends PHPUnit_Framework_TestCase public function setUp() { + parent::setUp(); + // Make sure the browser running the test does not influence the Country detection code $_SERVER['HTTP_ACCEPT_LANGUAGE'] = 'en'; -- GitLab