remove timezone test

This commit is contained in:
Robin Appelman 2014-07-22 01:07:55 +02:00
commit ae422b33fc

View file

@ -29,7 +29,7 @@ class Server extends \PHPUnit_Framework_TestCase {
* @expectedException \Icewind\SMB\AuthenticationException
*/
public function testWrongUserName() {
$server = new \Icewind\SMB\Server($this->config->host, uniqid(), $this->config->password);
$server = new \Icewind\SMB\Server($this->config->host, uniqid(), uniqid());
$server->listShares();
}
@ -48,9 +48,4 @@ class Server extends \PHPUnit_Framework_TestCase {
$server = new \Icewind\SMB\Server(uniqid(), $this->config->user, $this->config->password);
$server->listShares();
}
public function testGetTimeZone() {
$timeZone = $this->server->getTimeZone();
$this->assertEquals('+0200', $timeZone);
}
}