summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorIgor Scheller <igor.scheller@igorshp.de>2019-12-01 22:10:10 +0100
committerIgor Scheller <igor.scheller@igorshp.de>2019-12-08 02:20:51 +0100
commit064a1750279be244f86cf24f29749b391b11f1dd (patch)
treed0c30c3446d1d46cc9a179b6d20cf36967f38f32 /tests
parent47e209e12594b935ba1670096ae4c55538ebde94 (diff)
Renamed GuzzleServiceProvider to HttpClientServiceProvider, fixed translation and import error
Diffstat (limited to 'tests')
-rw-r--r--tests/Unit/Http/HttpClientServiceProviderTest.php (renamed from tests/Unit/Http/GuzzleServiceProviderTest.php)8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/Unit/Http/GuzzleServiceProviderTest.php b/tests/Unit/Http/HttpClientServiceProviderTest.php
index 4d3c938b..7dfc0a3e 100644
--- a/tests/Unit/Http/GuzzleServiceProviderTest.php
+++ b/tests/Unit/Http/HttpClientServiceProviderTest.php
@@ -3,20 +3,20 @@
namespace Engelsystem\Test\Unit\Http;
use Engelsystem\Application;
-use Engelsystem\Http\GuzzleServiceProvider;
+use Engelsystem\Http\HttpClientServiceProvider;
use Engelsystem\Test\Unit\ServiceProviderTest;
use GuzzleHttp\Client as GuzzleClient;
-class GuzzleServiceProviderTest extends ServiceProviderTest
+class HttpClientServiceProviderTest extends ServiceProviderTest
{
/**
- * @covers \Engelsystem\Http\GuzzleServiceProvider::register
+ * @covers \Engelsystem\Http\HttpClientServiceProvider::register
*/
public function testRegister()
{
$app = new Application();
- $serviceProvider = new GuzzleServiceProvider($app);
+ $serviceProvider = new HttpClientServiceProvider($app);
$serviceProvider->register();
/** @var GuzzleClient $guzzle */