Ignore:
Timestamp:
May 3, 2014 11:09:03 PM (10 years ago)
Author:
anonymous
Message:

Convert tabs to spaces, and lineendings to LF in all files.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/AuthSQLTest.php

    r468 r479  
    3838    function setUp()
    3939    {
    40         require dirname(__FILE__) . '/_config.inc.php';
     40        require dirname(__FILE__) . '/_config.inc.php';
    4141        require_once '../lib/Auth_SQL.inc.php';
    4242        $this->Auth_SQL = new Auth_SQL('testauth');
     
    7575    function tearDown()
    7676    {
    77         $db =& DB::getInstance();
    78 
    79         unset($this->Auth_SQL);
     77        $db =& DB::getInstance();
     78
     79        unset($this->Auth_SQL);
    8080        $db->query("DROP TABLE IF EXISTS test_user_tbl");
    8181        $db->query("DROP TABLE IF EXISTS test_login_tbl");
     
    163163    function test_blockaccount()
    164164    {
    165         $db =& DB::getInstance();
     165        $db =& DB::getInstance();
    166166
    167167        $this->Auth_SQL->login('testuser', 'testpass');
     
    177177    function test_unblockaccount()
    178178    {
    179         $db =& DB::getInstance();
     179        $db =& DB::getInstance();
    180180
    181181        $db->query("
     
    239239    function test_setpassword()
    240240    {
    241         $db =& DB::getInstance();
     241        $db =& DB::getInstance();
    242242
    243243        $this->Auth_SQL->setParam(array('encryption_type' => Auth_SQL::ENCRYPT_SHA1_HARDENED));
Note: See TracChangeset for help on using the changeset viewer.