Skip to content

Commit

Permalink
Add missing parent::setUp call
Browse files Browse the repository at this point in the history
  • Loading branch information
ankitpokhrel committed Jul 21, 2018
1 parent 7562fdf commit 444a2db
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/FileTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ public function setUp()
$this->mockBuilder = (new MockBuilder)->setNamespace('\TusPhp');

$this->file->setMeta(100, 1024, '/path/to/file.txt', 'http://tus.local/uploads/file.txt');

parent::setUp();
}

/**
Expand Down
2 changes: 2 additions & 0 deletions tests/ResponseTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ class ResponseTest extends TestCase
public function setUp()
{
$this->response = new Response;

parent::setUp();
}

/**
Expand Down

0 comments on commit 444a2db

Please sign in to comment.