Skip to content

Commit 7ad742b

Browse files
ci: phpunit test directory config is now more generic for ci testing
fix: client can't extend Guzzle Client
1 parent 7dc041f commit 7ad742b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

phpunit.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
>
77
<testsuites>
88
<testsuite name="all">
9-
<directory suffix="Test.php">./tests</directory>
9+
<directory suffix="Test.php">tests</directory>
1010
</testsuite>
1111
</testsuites>
1212
<coverage processUncoveredFiles="true">
1313
<include>
14-
<directory suffix=".php">./tests</directory>
14+
<directory suffix=".php">tests</directory>
1515
</include>
1616
</coverage>
1717
<php>

src/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace ArangoClient;
44

5-
class Client extends \GuzzleHttp\Client
5+
class Client
66
{
77

88
}

0 commit comments

Comments
 (0)