summaryrefslogtreecommitdiff
path: root/tests/Unit/Http/Psr7ServiceProviderTest.php
diff options
context:
space:
mode:
authorIgor Scheller <igor.scheller@igorshp.de>2018-08-20 17:35:07 +0200
committerIgor Scheller <igor.scheller@igorshp.de>2018-08-20 17:43:15 +0200
commitb0e7bc0df2eb4975223582089c7a928903e8cd14 (patch)
treecb822bbf31a0339f08df6131ce5fcdd87fa398db /tests/Unit/Http/Psr7ServiceProviderTest.php
parent5427ee385dc2ff117a1130eb606f78e708949c8f (diff)
Made Engelsystem\Http\Request PSR-7 ServerRequestInterface compatible
Diffstat (limited to 'tests/Unit/Http/Psr7ServiceProviderTest.php')
-rw-r--r--tests/Unit/Http/Psr7ServiceProviderTest.php5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/Unit/Http/Psr7ServiceProviderTest.php b/tests/Unit/Http/Psr7ServiceProviderTest.php
index a09e9572..e14daf2a 100644
--- a/tests/Unit/Http/Psr7ServiceProviderTest.php
+++ b/tests/Unit/Http/Psr7ServiceProviderTest.php
@@ -50,11 +50,6 @@ class Psr7ServiceProviderTest extends ServiceProviderTest
[ResponseInterface::class, 'psr7.response']
);
- $psr7Factory->expects($this->once())
- ->method('createRequest')
- ->with($request)
- ->willReturn($psr7request);
-
$serviceProvider = new Psr7ServiceProvider($app);
$serviceProvider->register();
}