Skip to content

Commit

Permalink
Remove strict attribute in the XML configuration
Browse files Browse the repository at this point in the history
Let PHPUnit be quiet

    PHPUnit 7.5.1 by Sebastian Bergmann and contributors.

      Warning - The configuration file did not pass validation!
      The following problems have been detected:

      Line 8:
      - Element 'phpunit', attribute 'strict': The attribute 'strict' is not allowed.

      Test results may not be as expected.

See sebastianbergmann/phpunit@78c8865
  • Loading branch information
Gasol Wu committed Dec 13, 2018
1 parent 03532b5 commit 34b0d25
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
<phpunit
colors="true"
beStrictAboutCoversAnnotation="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutTodoAnnotatedTests="true"
bootstrap="bootstrap.php"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
strict="true"
enforceTimeLimit="true"
>
<testsuite name="Sabre_HTTP">
<directory>HTTP/</directory>
Expand Down

0 comments on commit 34b0d25

Please sign in to comment.