aboutsummaryrefslogtreecommitdiffstats
path: root/tests/attachment
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2015-10-09 11:15:21 +0200
committerMarc Alexander <admin@m-a-styles.de>2015-10-09 11:15:21 +0200
commit88033feb85f554936462b7652c80a7a815128d2b (patch)
tree1d3e6453b0bf1745691bd1207577dc915a6a26fe /tests/attachment
parentc78dbd2eea2dae14b076d8d800474c8715982277 (diff)
downloadforums-88033feb85f554936462b7652c80a7a815128d2b.tar
forums-88033feb85f554936462b7652c80a7a815128d2b.tar.gz
forums-88033feb85f554936462b7652c80a7a815128d2b.tar.bz2
forums-88033feb85f554936462b7652c80a7a815128d2b.tar.xz
forums-88033feb85f554936462b7652c80a7a815128d2b.zip
[ticket/14168] Fix tests after rebase
PHPBB3-14168
Diffstat (limited to 'tests/attachment')
-rw-r--r--tests/attachment/delete_test.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/attachment/delete_test.php b/tests/attachment/delete_test.php
index 8db6487542..f1835dd37a 100644
--- a/tests/attachment/delete_test.php
+++ b/tests/attachment/delete_test.php
@@ -55,7 +55,8 @@ class phpbb_attachment_delete_test extends \phpbb_database_test_case
->method('exists')
->willReturn(true);
$this->phpbb_root_path = $phpbb_root_path;
- $this->attachment_delete = new \phpbb\attachment\delete($this->config, $this->db, $this->filesystem, $this->resync, $phpbb_root_path);
+ $this->dispatcher = new \phpbb_mock_event_dispatcher();
+ $this->attachment_delete = new \phpbb\attachment\delete($this->config, $this->db, $this->dispatcher, $this->filesystem, $this->resync, $phpbb_root_path);
}
public function data_attachment_delete()
@@ -120,7 +121,7 @@ class phpbb_attachment_delete_test extends \phpbb_database_test_case
->method('exists')
->willReturn($exists_success);
- $this->attachment_delete = new \phpbb\attachment\delete($this->config, $this->db, $this->filesystem, $this->resync, $this->phpbb_root_path);
+ $this->attachment_delete = new \phpbb\attachment\delete($this->config, $this->db, $this->dispatcher, $this->filesystem, $this->resync, $this->phpbb_root_path);
$this->assertSame($expected, $this->attachment_delete->unlink_attachment('foobar'));
}
}