Skip to content

Commit

Permalink
Merge pull request #19 from kornrunner/master
Browse files Browse the repository at this point in the history
Bump Codeception to 2.4 (forward compat)
  • Loading branch information
Naktibalda authored Jan 17, 2020
2 parents b0db212 + 16fae65 commit 5c4af8a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
],
"require": {
"mockery/mockery": "^0.8|^0.9|^1.0",
"codeception/codeception": "^2.0|^3.0|^4.0"
"codeception/codeception": "^2.4|^3.0|^4.0"
},
"autoload": {
"psr-4": {
Expand Down
6 changes: 3 additions & 3 deletions src/MockeryModule/Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Codeception\MockeryModule;

use Codeception\TestCase\Test as BaseTest;
use Codeception\Test\Unit as BaseTest;
use Mockery;

/**
Expand All @@ -16,9 +16,9 @@
*/
class Test extends BaseTest
{
protected function tearDown()
protected function _tearDown()
{
parent::tearDown();
parent::_tearDown();
Mockery::close();
}
}

0 comments on commit 5c4af8a

Please sign in to comment.