aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Alexis Degrugillier <aledeg@users.noreply.github.com> 2021-02-27 04:36:11 -0500
committerGravatar GitHub <noreply@github.com> 2021-02-27 10:36:11 +0100
commit6be9797a269268c3d388a448db5e983fbc70c9cc (patch)
treeee7d6cf1c2518b98ce5717d2ee1d1e24c16e9b69
parent449fee7a2cc9453da4aac03f833ccb28205d7d3a (diff)
Update PHPUnit version (#3487)
Tests weren't running with the previous version because of a reserved word in PHP8. The latest version of the library fixes that. See https://github.com/sebastianbergmann/phpunit/issues/4373 for more information.
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index f69507270..b843cb81e 100644
--- a/Makefile
+++ b/Makefile
@@ -69,8 +69,8 @@ lint-fix: bin/phpcbf ## Fix the errors detected by the linter
bin/phpunit:
mkdir -p bin/
- wget -O bin/phpunit https://phar.phpunit.de/phpunit-7.5.9.phar
- echo '5404288061420c3921e53dd3a756bf044be546c825c5e3556dea4c51aa330f69 bin/phpunit' | sha256sum -c - || rm bin/phpunit
+ wget -O bin/phpunit https://phar.phpunit.de/phpunit-9.5.2.phar
+ echo 'bcf913565bc60dfb5356cf67cbbccec1d8888dbd595b0fbb8343a5019342c67c bin/phpunit' | sha256sum -c - || rm bin/phpunit
bin/phpcs:
mkdir -p bin/