Merge branch '3.4' into 4.1

* 3.4:
  fixed usage of setUp in tests
  fixed usage of setUp in tests
  [travis] minor fix (quater)
This commit is contained in:
Fabien Potencier 2018-09-04 08:28:44 +02:00
commit 525c98b224
5 changed files with 6 additions and 6 deletions

View File

@ -79,7 +79,7 @@ foreach ($composerJsons as list($dir, $lockedPackages)) {
continue 2; continue 2;
} }
if (isset($composerJsons[$name][2]['repositories']) && !isset($lockedJson[$key]['repositories'])) { if (isset($composerJsons[$name][2]['repositories']) && !isset($lockedJson['repositories'])) {
// the locked package has been patched locally but the lock references a commit, // the locked package has been patched locally but the lock references a commit,
// which means the referencing package itself is not modified // which means the referencing package itself is not modified
continue; continue;

View File

@ -58,7 +58,7 @@ class CombinedStoreTest extends AbstractStoreTest
/** @var CombinedStore */ /** @var CombinedStore */
private $store; private $store;
public function setup() protected function setUp()
{ {
$this->strategy = $this->getMockBuilder(StrategyInterface::class)->getMock(); $this->strategy = $this->getMockBuilder(StrategyInterface::class)->getMock();
$this->store1 = $this->getMockBuilder(StoreInterface::class)->getMock(); $this->store1 = $this->getMockBuilder(StoreInterface::class)->getMock();

View File

@ -22,7 +22,7 @@ class ConsensusStrategyTest extends TestCase
/** @var ConsensusStrategy */ /** @var ConsensusStrategy */
private $strategy; private $strategy;
public function setup() protected function setUp()
{ {
$this->strategy = new ConsensusStrategy(); $this->strategy = new ConsensusStrategy();
} }

View File

@ -22,7 +22,7 @@ class UnanimousStrategyTest extends TestCase
/** @var UnanimousStrategy */ /** @var UnanimousStrategy */
private $strategy; private $strategy;
public function setup() protected function setUp()
{ {
$this->strategy = new UnanimousStrategy(); $this->strategy = new UnanimousStrategy();
} }

View File

@ -210,12 +210,12 @@ class CsrfTokenManagerTest extends TestCase
); );
} }
public function setUp() protected function setUp()
{ {
$_SERVER['HTTPS'] = 'on'; $_SERVER['HTTPS'] = 'on';
} }
public function tearDown() protected function tearDown()
{ {
parent::tearDown(); parent::tearDown();