mirror of
https://codeberg.org/icewind/SMB.git
synced 2026-06-03 09:14:06 +02:00
remove timezone test
This commit is contained in:
parent
bd537cd222
commit
ae422b33fc
1 changed files with 1 additions and 6 deletions
|
|
@ -29,7 +29,7 @@ class Server extends \PHPUnit_Framework_TestCase {
|
||||||
* @expectedException \Icewind\SMB\AuthenticationException
|
* @expectedException \Icewind\SMB\AuthenticationException
|
||||||
*/
|
*/
|
||||||
public function testWrongUserName() {
|
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();
|
$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 = new \Icewind\SMB\Server(uniqid(), $this->config->user, $this->config->password);
|
||||||
$server->listShares();
|
$server->listShares();
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testGetTimeZone() {
|
|
||||||
$timeZone = $this->server->getTimeZone();
|
|
||||||
$this->assertEquals('+0200', $timeZone);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue