aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2014-06-01 01:59:29 +0200
committerTristan Darricau <github@nicofuma.fr>2014-06-01 01:59:29 +0200
commit6794c6b79b751fe90f9c37020276e4510e41150e (patch)
tree3ee2cbca63c7363a8c2a65703418fa595e900986 /tests
parent6d3bc7a60b2da5180bd1ac1f849114b2dadfca78 (diff)
downloadforums-6794c6b79b751fe90f9c37020276e4510e41150e.tar
forums-6794c6b79b751fe90f9c37020276e4510e41150e.tar.gz
forums-6794c6b79b751fe90f9c37020276e4510e41150e.tar.bz2
forums-6794c6b79b751fe90f9c37020276e4510e41150e.tar.xz
forums-6794c6b79b751fe90f9c37020276e4510e41150e.zip
[ticket/12639] Remove old commented tests
PHPBB3-12639
Diffstat (limited to 'tests')
-rw-r--r--tests/log/delete_test.php5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/log/delete_test.php b/tests/log/delete_test.php
index 3c97d0c36a..188e5138d0 100644
--- a/tests/log/delete_test.php
+++ b/tests/log/delete_test.php
@@ -143,11 +143,6 @@ class phpbb_log_delete_test extends phpbb_database_test_case
$this->assertEquals($expected_before, $this->get_ids($this->log->get_logs($mode, $count_logs, $limit, $offset, $forum_id, $topic_id, $user_id, $log_time, $sort_by, $keywords)), 'before');
$this->log->delete($mode, $delete_conditions);
$this->assertEquals($expected_after, $this->get_ids($this->log->get_logs($mode, $count_logs, $limit, $offset, $forum_id, $topic_id, $user_id, $log_time, $sort_by, $keywords)), 'after');
-/*
- // Delete with an empty keyword list
- $this->assertCount(1, $log->get_logs('critical', false, 0, 0, 0, 0, 0, 0, 'l.log_time DESC'));
- $log->delete('critical', array('keywords' => ''));
- $this->assertEmpty($log->get_logs('critical', false, 0, 0, 0, 0, 0, 0, 'l.log_time DESC'));*/
}
public function get_ids($logs)