Completed
Push — feature/EVO-3237-send-file-par... ( 460e32...616485 )
by Lucas
06:26 queued 03:14
created
test/Service/FileSenderTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
         $method = 'PUT';
95 95
         $uri = 'http://localhost/file/example';
96 96
         $options = [
97
-            'upload' => __DIR__ . '/fixtures/file.txt'
97
+            'upload' => __DIR__.'/fixtures/file.txt'
98 98
             // look ma no 'json' => '{}'
99 99
         ];
100 100
 
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
         $method = 'PUT';
125 125
         $uri = 'http://localhost/file/example';
126 126
         $options = [
127
-            'upload' => __DIR__ . '/fixtures/file.txt',
127
+            'upload' => __DIR__.'/fixtures/file.txt',
128 128
             'json' => new \stdClass()
129 129
         ];
130 130
         $expectedOptions = [
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
                 $method,
144 144
                 $uri,
145 145
                 $this->callback(
146
-                    function ($options) use ($expectedOptions) {
146
+                    function($options) use ($expectedOptions) {
147 147
                         $this->assertArrayHasKey('body', $options);
148 148
                         $this->assertInternalType('resource', $options['body']);
149 149
                         unset($options['body']);
Please login to merge, or discard this patch.