aboutsummaryrefslogtreecommitdiffstats
path: root/tests/acp_board/select_auth_method_test.php
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2013-09-19 18:50:08 +0200
committerNils Adermann <naderman@naderman.de>2013-09-19 18:50:08 +0200
commit16fdef486676d0c624e452959b763cf99d8e4ade (patch)
treee499616784db2db2f0043f8635b93a1363cdc593 /tests/acp_board/select_auth_method_test.php
parentfe36375a36ec4f816eb07b41630b6c9fa7ff12c8 (diff)
downloadforums-16fdef486676d0c624e452959b763cf99d8e4ade.tar
forums-16fdef486676d0c624e452959b763cf99d8e4ade.tar.gz
forums-16fdef486676d0c624e452959b763cf99d8e4ade.tar.bz2
forums-16fdef486676d0c624e452959b763cf99d8e4ade.tar.xz
forums-16fdef486676d0c624e452959b763cf99d8e4ade.zip
[ticket/11700] Get unit tests to run again with namespaces
PHPBB3-11700
Diffstat (limited to 'tests/acp_board/select_auth_method_test.php')
-rw-r--r--tests/acp_board/select_auth_method_test.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/acp_board/select_auth_method_test.php b/tests/acp_board/select_auth_method_test.php
index 91aa5d1232..b943554564 100644
--- a/tests/acp_board/select_auth_method_test.php
+++ b/tests/acp_board/select_auth_method_test.php
@@ -31,8 +31,8 @@ class phpbb_acp_board_select_auth_method_test extends phpbb_test_case
$phpbb_container = new phpbb_mock_container_builder();
$phpbb_container->set('auth.provider_collection', array(
- 'auth.provider.acp_board_valid' => new phpbb_auth_provider_acp_board_valid,
- 'auth.provider.acp_board_invalid' => new phpbb_auth_provider_acp_board_invalid,
+ 'auth.provider.acp_board_valid' => new phpbb\auth\provider\acp\board_valid,
+ 'auth.provider.acp_board_invalid' => new phpbb\auth\provider\acp\board_invalid,
));
$this->acp_board = new acp_board();