diff options
author | Andreas Gohr <andi@splitbrain.org> | 2016-03-12 10:22:23 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2016-03-12 10:22:23 +0100 |
commit | 1d46eaf15e643a68facf0421651474b70f938bce (patch) | |
tree | 83d14c8863e2f82961576b1285d86b247cf37ead /lib/plugins/authpdo/_test | |
parent | c3f4c777155c3ce9e64aff5ff45420d373a92bc0 (diff) | |
download | dokuwiki-1d46eaf15e643a68facf0421651474b70f938bce.tar.gz dokuwiki-1d46eaf15e643a68facf0421651474b70f938bce.zip |
removed accidentally checked in function
this was an intermediate woriking state but got replaced by indivdual
dump skipping. forgot to remove it again
Diffstat (limited to 'lib/plugins/authpdo/_test')
-rw-r--r-- | lib/plugins/authpdo/_test/pgsql.test.php | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/plugins/authpdo/_test/pgsql.test.php b/lib/plugins/authpdo/_test/pgsql.test.php index 45fd580df..31400aeb3 100644 --- a/lib/plugins/authpdo/_test/pgsql.test.php +++ b/lib/plugins/authpdo/_test/pgsql.test.php @@ -10,12 +10,4 @@ class pgsql_plugin_authpdo_test extends mysql_plugin_authpdo_test { protected $driver = 'pgsql'; - public function test_requirements() { - parent::test_requirements(); - - if(!function_exists('hash_pbkdf2') || !in_array('sha256', hash_algos())){ - $this->markTestSkipped("Skipped {$this->driver} tests. Missing pbkdf2 hash support to check passwords"); - } - } - } |