diff --git a/src/BeSimple/SoapClient/Tests/ServerInterop/SwaServerInteropTest.php b/src/BeSimple/SoapClient/Tests/ServerInterop/SwaServerInteropTest.php index 90f7fa0..73dc2aa 100644 --- a/src/BeSimple/SoapClient/Tests/ServerInterop/SwaServerInteropTest.php +++ b/src/BeSimple/SoapClient/Tests/ServerInterop/SwaServerInteropTest.php @@ -42,6 +42,8 @@ class SwaServerInteropTest extends TestCase $result = $sc->downloadFile($download); $this->assertEquals($upload->data, $result->data); + + unlink(__DIR__.'/../ServerInterop/'.$download->name); } public function testUploadDownloadImage() @@ -60,5 +62,7 @@ class SwaServerInteropTest extends TestCase $result = $sc->downloadFile($download); $this->assertEquals($upload->data, $result->data); + + unlink(__DIR__.'/../ServerInterop/'.$download->name); } -} \ No newline at end of file +}