diff options
author | Jeremy Benoist <jeremy.benoist@gmail.com> | 2018-10-29 12:09:33 +0100 |
---|---|---|
committer | Jeremy Benoist <jeremy.benoist@gmail.com> | 2018-10-29 12:09:33 +0100 |
commit | 5d50f77e34f2b61327482b7d198d554af1357cf2 (patch) | |
tree | 67b8d46211f5c6c62f5328f35fa71b14f22b519d | |
parent | ffb4e0b92219a4eccdf4ff773ce43159f3ad3162 (diff) | |
download | wallabag-5d50f77e34f2b61327482b7d198d554af1357cf2.tar.gz wallabag-5d50f77e34f2b61327482b7d198d554af1357cf2.tar.zst wallabag-5d50f77e34f2b61327482b7d198d554af1357cf2.zip |
fixup! Debug MySQL failing
-rw-r--r-- | composer.json | 2 | ||||
-rw-r--r-- | tests/Wallabag/CoreBundle/Mock/InstallCommandMock.php | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/composer.json b/composer.json index bc08b015..475e000f 100644 --- a/composer.json +++ b/composer.json | |||
@@ -93,7 +93,7 @@ | |||
93 | "symfony/phpunit-bridge": "^3.3", | 93 | "symfony/phpunit-bridge": "^3.3", |
94 | "friendsofphp/php-cs-fixer": "~2.0", | 94 | "friendsofphp/php-cs-fixer": "~2.0", |
95 | "m6web/redis-mock": "^2.0", | 95 | "m6web/redis-mock": "^2.0", |
96 | "dama/doctrine-test-bundle": "^4.0" | 96 | "dama/doctrine-test-bundle": "^5.0" |
97 | }, | 97 | }, |
98 | "scripts": { | 98 | "scripts": { |
99 | "post-cmd": [ | 99 | "post-cmd": [ |
diff --git a/tests/Wallabag/CoreBundle/Mock/InstallCommandMock.php b/tests/Wallabag/CoreBundle/Mock/InstallCommandMock.php index 5806bd4d..59529362 100644 --- a/tests/Wallabag/CoreBundle/Mock/InstallCommandMock.php +++ b/tests/Wallabag/CoreBundle/Mock/InstallCommandMock.php | |||
@@ -17,6 +17,9 @@ class InstallCommandMock extends InstallCommand | |||
17 | { | 17 | { |
18 | protected function runCommand($command, $parameters = []) | 18 | protected function runCommand($command, $parameters = []) |
19 | { | 19 | { |
20 | // echo $command."\n"; | ||
21 | var_dump($command); | ||
22 | |||
20 | return $this; | 23 | return $this; |
21 | } | 24 | } |
22 | } | 25 | } |