Skip to content

Commit

Permalink
Remove deprecated annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianfeldmann committed Mar 1, 2019
1 parent 1a1f617 commit beb387c
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions tests/Ftp/FileTest.php
Expand Up @@ -20,21 +20,19 @@ class FileTest extends TestCase
{
/**
* Tests File::__construct
*
* @expectedException \Exception
*/
public function testConstructNoType()
{
$this->expectedException(\Exception::class);
$file = new File([]);
}

/**
* Tests File::__construct
*
* @expectedException \Exception
*/
public function testConstructNoName()
{
$this->expectedException(\Exception::class);
$file = new File(['type' => 'file']);
}

Expand Down

0 comments on commit beb387c

Please sign in to comment.