From f983c419bb08787ff102c31883dc6f23e449554d Mon Sep 17 00:00:00 2001
From: Michiel Kodde <mkodde@ibuildings.nl>
Date: Thu, 7 Mar 2019 11:07:04 +0100
Subject: [PATCH] Update TESTING.md (#1056)

In https://github.com/simplesamlphp/simplesamlphp/pull/972 we moved the
phpunit config to the root of the project. This was not updated in the
testing documentation.
---
 TESTING.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/TESTING.md b/TESTING.md
index e0c4fd0e9..c38db47e8 100644
--- a/TESTING.md
+++ b/TESTING.md
@@ -56,14 +56,14 @@ SimpleSAMLphp installation, as the tests cannot use that. Make sure
 you have `phpunit` installed and run:
 
 ```sh
-phpunit -c tools/phpunit/phpunit.xml
+phpunit -c ./phpunit.xml
 ```
 
 If your default version of `phpunit` is more recent than 4.8, you can run
 the old version installed by composer
 
 ```sh
-./vendor/bin/phpunit -c tools/phpunit/phpunit.xml
+./vendor/bin/phpunit -c ./phpunit.xml
 ```
 
 All the tests are run by our *continuous integration* platform,
-- 
GitLab