diff options
-rw-r--r-- | apps/user_ldap/tests/wizard.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/user_ldap/tests/wizard.php b/apps/user_ldap/tests/wizard.php index 7cf393d31ba..f8e14f08bc9 100644 --- a/apps/user_ldap/tests/wizard.php +++ b/apps/user_ldap/tests/wizard.php @@ -275,7 +275,7 @@ class Test_Wizard extends \Test\TestCase { } else if($filter === 'mailPrimaryAddress') { return 17; } - var_dump($filter); + throw new \Exception('Untested filter: ' . $filter); })); $result = $wizard->detectEmailAttribute()->getResultArray(); @@ -314,7 +314,7 @@ class Test_Wizard extends \Test\TestCase { } else if($filter === 'mailPrimaryAddress') { return 17; } - var_dump($filter); + throw new \Exception('Untested filter: ' . $filter); })); $result = $wizard->detectEmailAttribute()->getResultArray(); @@ -353,7 +353,7 @@ class Test_Wizard extends \Test\TestCase { } else if($filter === 'mailPrimaryAddress') { return 0; } - var_dump($filter); + throw new \Exception('Untested filter: ' . $filter); })); $result = $wizard->detectEmailAttribute(); |