diff options
author | Jeremy Benoist <jeremy.benoist@gmail.com> | 2015-11-06 22:15:20 +0100 |
---|---|---|
committer | Jeremy Benoist <jeremy.benoist@gmail.com> | 2015-11-07 14:16:13 +0100 |
commit | 75c48e3ae0e7b23a246216b98f9b1368b9cdd69b (patch) | |
tree | 0b0624b879dd20f26eb37021b3f7dc68b4754483 /src/Wallabag | |
parent | d502762598db68ec822078642df8f6a8214202f7 (diff) | |
download | wallabag-75c48e3ae0e7b23a246216b98f9b1368b9cdd69b.tar.gz wallabag-75c48e3ae0e7b23a246216b98f9b1368b9cdd69b.tar.zst wallabag-75c48e3ae0e7b23a246216b98f9b1368b9cdd69b.zip |
CS
Diffstat (limited to 'src/Wallabag')
-rw-r--r-- | src/Wallabag/CoreBundle/Tests/Command/InstallCommandTest.php | 8 | ||||
-rw-r--r-- | src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/Wallabag/CoreBundle/Tests/Command/InstallCommandTest.php b/src/Wallabag/CoreBundle/Tests/Command/InstallCommandTest.php index e3ff47c0..0bb8be57 100644 --- a/src/Wallabag/CoreBundle/Tests/Command/InstallCommandTest.php +++ b/src/Wallabag/CoreBundle/Tests/Command/InstallCommandTest.php | |||
@@ -90,8 +90,8 @@ class InstallCommandTest extends WallabagCoreTestCase | |||
90 | 90 | ||
91 | public function testRunInstallCommandWithDatabaseRemoved() | 91 | public function testRunInstallCommandWithDatabaseRemoved() |
92 | { | 92 | { |
93 | if ($this->getClient()->getContainer()->get('doctrine')->getConnection()->getDriver() instanceOf \Doctrine\DBAL\Driver\PDOPgSql\Driver) { | 93 | if ($this->getClient()->getContainer()->get('doctrine')->getConnection()->getDriver() instanceof \Doctrine\DBAL\Driver\PDOPgSql\Driver) { |
94 | /** | 94 | /* |
95 | * LOG: statement: CREATE DATABASE "wallabag" | 95 | * LOG: statement: CREATE DATABASE "wallabag" |
96 | * ERROR: source database "template1" is being accessed by other users | 96 | * ERROR: source database "template1" is being accessed by other users |
97 | * DETAIL: There is 1 other session using the database. | 97 | * DETAIL: There is 1 other session using the database. |
@@ -183,8 +183,8 @@ class InstallCommandTest extends WallabagCoreTestCase | |||
183 | 183 | ||
184 | public function testRunInstallCommandChooseNothing() | 184 | public function testRunInstallCommandChooseNothing() |
185 | { | 185 | { |
186 | if ($this->getClient()->getContainer()->get('doctrine')->getConnection()->getDriver() instanceOf \Doctrine\DBAL\Driver\PDOPgSql\Driver) { | 186 | if ($this->getClient()->getContainer()->get('doctrine')->getConnection()->getDriver() instanceof \Doctrine\DBAL\Driver\PDOPgSql\Driver) { |
187 | /** | 187 | /* |
188 | * LOG: statement: CREATE DATABASE "wallabag" | 188 | * LOG: statement: CREATE DATABASE "wallabag" |
189 | * ERROR: source database "template1" is being accessed by other users | 189 | * ERROR: source database "template1" is being accessed by other users |
190 | * DETAIL: There is 1 other session using the database. | 190 | * DETAIL: There is 1 other session using the database. |
diff --git a/src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php b/src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php index 0bd7d4fe..56b4c9e4 100644 --- a/src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php +++ b/src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php | |||
@@ -75,7 +75,7 @@ class EntryControllerTest extends WallabagCoreTestCase | |||
75 | } | 75 | } |
76 | 76 | ||
77 | /** | 77 | /** |
78 | * This test will require an internet connection | 78 | * This test will require an internet connection. |
79 | */ | 79 | */ |
80 | public function testPostNewOk() | 80 | public function testPostNewOk() |
81 | { | 81 | { |