aboutsummaryrefslogtreecommitdiffstats
path: root/tests/functional/browse_test.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2013-05-27 22:12:50 +0200
committerJoas Schilling <nickvergessen@gmx.de>2013-05-27 23:10:07 +0200
commite77c8ee4ef745e69e7af06b69b3abd7412704b2f (patch)
treeb9d2d8f6f7ae95616c4a960d2b70d6d3910d3189 /tests/functional/browse_test.php
parent135139aca9bc9694397ad2bf4b7d7f9447ca033b (diff)
downloadforums-e77c8ee4ef745e69e7af06b69b3abd7412704b2f.tar
forums-e77c8ee4ef745e69e7af06b69b3abd7412704b2f.tar.gz
forums-e77c8ee4ef745e69e7af06b69b3abd7412704b2f.tar.bz2
forums-e77c8ee4ef745e69e7af06b69b3abd7412704b2f.tar.xz
forums-e77c8ee4ef745e69e7af06b69b3abd7412704b2f.zip
[ticket/11568] Remove manual calls to assert_response_success()
PHPBB3-11568
Diffstat (limited to 'tests/functional/browse_test.php')
-rw-r--r--tests/functional/browse_test.php3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/functional/browse_test.php b/tests/functional/browse_test.php
index b5748059c6..26c18c4c1f 100644
--- a/tests/functional/browse_test.php
+++ b/tests/functional/browse_test.php
@@ -15,21 +15,18 @@ class phpbb_functional_browse_test extends phpbb_functional_test_case
public function test_index()
{
$crawler = $this->request('GET', 'index.php');
- $this->assert_response_success();
$this->assertGreaterThan(0, $crawler->filter('.topiclist')->count());
}
public function test_viewforum()
{
$crawler = $this->request('GET', 'viewforum.php?f=2');
- $this->assert_response_success();
$this->assertGreaterThan(0, $crawler->filter('.topiclist')->count());
}
public function test_viewtopic()
{
$crawler = $this->request('GET', 'viewtopic.php?t=1');
- $this->assert_response_success();
$this->assertGreaterThan(0, $crawler->filter('.postbody')->count());
}
}