aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Tests
diff options
context:
space:
mode:
Diffstat (limited to 'src/Wallabag/CoreBundle/Tests')
-rw-r--r--src/Wallabag/CoreBundle/Tests/Command/InstallCommandTest.php8
-rw-r--r--src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php2
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 {