aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrxu <rxu@mail.ru>2017-03-19 21:46:20 +0700
committerrxu <rxu@mail.ru>2017-07-17 16:56:55 +0700
commite3859d894da3974d82491b228243c186c662bc9c (patch)
treefdf67caf1442f09dd9289b4fdc2551cc06171782 /tests/pagination
parent[ticket/14972] Fix sizeof calls (diff)
downloadphpbb-e3859d894da3974d82491b228243c186c662bc9c.tar.gz
phpbb-e3859d894da3974d82491b228243c186c662bc9c.tar.bz2
phpbb-e3859d894da3974d82491b228243c186c662bc9c.zip
[ticket/14972] Migrate from deprecated getMock() method to createMock()
PHPBB3-14972
Diffstat (limited to 'tests/pagination')
-rw-r--r--tests/pagination/pagination_test.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pagination/pagination_test.php b/tests/pagination/pagination_test.php
index 2d7d1671a8..3b1f1a45c3 100644
--- a/tests/pagination/pagination_test.php
+++ b/tests/pagination/pagination_test.php
@@ -29,7 +29,7 @@ class phpbb_pagination_pagination_test extends phpbb_template_template_test_case
global $phpbb_dispatcher, $phpbb_root_path, $phpEx;
$phpbb_dispatcher = new phpbb_mock_event_dispatcher();
- $this->user = $this->getMock('\phpbb\user', array(), array(
+ $this->user = $this->createMock('\phpbb\user', array(), array(
new \phpbb\language\language(new \phpbb\language\language_file_loader($phpbb_root_path, $phpEx)),
'\phpbb\datetime'
));