Skip to content

Commit

Permalink
minor #283 [Maintenance] Upgrade PHPUnit package (GSadee)
Browse files Browse the repository at this point in the history
This PR was merged into the 1.0-dev branch.

Discussion
----------



Commits
-------

c03d259 [Maintenance] Upgrade PHPUnit package
  • Loading branch information
lchrusciel authored Apr 21, 2021
2 parents c127bfc + c03d259 commit bfb6805
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@

/tests/Application/yarn.lock

.env.test

phpspec.yml

/.phpunit.result.cache
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"phpspec/phpspec": "^7.0",
"phpstan/phpstan": "0.12.29",
"phpstan/phpstan-webmozart-assert": "0.12.6",
"phpunit/phpunit": "^8.5",
"phpunit/phpunit": "^9.5",
"sylius-labs/coding-standard": "^3.2",
"symfony/browser-kit": "^4.4 || ^5.2",
"symfony/debug-bundle": "^4.4 || ^5.2",
Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/TemporaryFileManagerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@ function it_removes_file_from_base_directory(): void
$fileManager->createWithContent('file-to-remove.txt', 'test file content');
$fileManager->remove('file-to-remove.txt');

$this->assertFileNotExists(sys_get_temp_dir().'/file-to-remove.txt');
$this->assertFileDoesNotExist(sys_get_temp_dir().'/file-to-remove.txt');
}
}

0 comments on commit bfb6805

Please sign in to comment.