Skip to content

Commit 237c510

Browse files
authored
Merge pull request #519 from lorenzomaieru/master
Drop default config before defining test config
2 parents 08c86e5 + b212666 commit 237c510

File tree

4 files changed

+14
-1
lines changed

4 files changed

+14
-1
lines changed

.semver

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
22
:major: 4
33
:minor: 2
4-
:patch: 0
4+
:patch: 1
55
:special: ''

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,20 @@ Changelog
44
Releases for CakePHP 3
55
-------------
66

7+
* 4.2.1
8+
* Improvements in unit tests
9+
710
* 4.2.0
811
* New configuration param `Users.Registration.defaultRole` to set the default role on user registration or addUser Shell action
912

13+
* 4.1.3
14+
* Configurable rememberMe checkbox status
15+
* Update brazilian portuguese translations
16+
* Add active finder to SocialAccountsTable
17+
* Improvements in UsersShell for superuser add options
18+
* Update to robthree/twofactorauth 1.6
19+
* UserHelper improvements
20+
1021
* 4.1.2
1122
* Fix RememberMe redirect
1223
* Fix AuthLink rendering inside Cells

tests/TestCase/Controller/SocialAccountsControllerTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ public function setUp()
5050
'className' => 'Debug'
5151
]);
5252
$this->configEmail = Email::config('default');
53+
Email::drop('default');
5354
Email::config('default', [
5455
'transport' => 'test',
5556
'from' => '[email protected]'

tests/TestCase/Controller/Traits/BaseTraitTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ public function setUp()
6464
'className' => 'Debug'
6565
]);
6666
$this->configEmail = Email::config('default');
67+
Email::drop('default');
6768
Email::config('default', [
6869
'transport' => 'test',
6970
'from' => '[email protected]'

0 commit comments

Comments
 (0)