mirror of
https://github.com/appwrite/appwrite
synced 2026-05-24 09:28:40 +00:00
Update FileNameTest.php
This commit is contained in:
parent
4e3eda9072
commit
81748bbade
1 changed files with 3 additions and 3 deletions
|
|
@ -12,12 +12,12 @@ class FileNameTest extends TestCase
|
||||||
*/
|
*/
|
||||||
protected $object = null;
|
protected $object = null;
|
||||||
|
|
||||||
public function setUp()
|
public function setUp(): void
|
||||||
{
|
{
|
||||||
$this->object = new FileName();
|
$this->object = new FileName();
|
||||||
}
|
}
|
||||||
|
|
||||||
public function tearDown()
|
public function tearDown(): void
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -30,4 +30,4 @@ class FileNameTest extends TestCase
|
||||||
$this->assertEquals($this->object->isValid('test.png'), true);
|
$this->assertEquals($this->object->isValid('test.png'), true);
|
||||||
$this->assertEquals($this->object->isValid('test'), true);
|
$this->assertEquals($this->object->isValid('test'), true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue