Ignore:
Timestamp:
Jun 8, 2006 5:36:10 AM (18 years ago)
Author:
scdev
Message:

${1}

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/Auth_FileTest.php

    r149 r154  
    4545        $result = $this->Auth_File->login('testuser', 'testpass');
    4646        $this->assertTrue($result, 'testuser login failed.');
    47         $this->assertTrue($_SESSION[$this->Auth_File->_ns]['authenticated'], 'testuser authentication not found in session.');
     47        $this->assertTrue($_SESSION['_auth_file'][$this->Auth_File->_ns]['authenticated'], 'testuser authentication not found in session.');
    4848    }
    4949
     
    5252        $result = $this->Auth_File->login('testuser', 'testpass');
    5353        $this->Auth_File->clear();
    54         $this->assertFalse($_SESSION[$this->Auth_File->_ns]['authenticated'], 'testuser authentication not false in session.');
     54        $this->assertFalse($_SESSION['_auth_file'][$this->Auth_File->_ns]['authenticated'], 'testuser authentication not false in session.');
    5555    }
    5656
Note: See TracChangeset for help on using the changeset viewer.