Skip to content

Commit e2de214

Browse files
committed
[SoapClient] [Tests] Removed uploaded file
1 parent 3cfeea8 commit e2de214

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/BeSimple/SoapClient/Tests/ServerInterop/SwaServerInteropTest.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ public function testUploadDownloadText()
4242
$result = $sc->downloadFile($download);
4343

4444
$this->assertEquals($upload->data, $result->data);
45+
46+
unlink(__DIR__.'/../ServerInterop/'.$download->name);
4547
}
4648

4749
public function testUploadDownloadImage()
@@ -60,5 +62,7 @@ public function testUploadDownloadImage()
6062
$result = $sc->downloadFile($download);
6163

6264
$this->assertEquals($upload->data, $result->data);
65+
66+
unlink(__DIR__.'/../ServerInterop/'.$download->name);
6367
}
64-
}
68+
}

0 commit comments

Comments
 (0)