Completed
Push — master ( 58621f...aba2a4 )
by smiley
02:25
created
tests/Drivers/DriverTestAbstract.php 2 patches
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,9 +12,9 @@
 block discarded – undo
12 12
 
13 13
 namespace chillerlan\DatabaseTest\Drivers;
14 14
 
15
+use chillerlan\DatabaseTest\TestAbstract;
15 16
 use chillerlan\Database\DBResult;
16 17
 use chillerlan\Database\Drivers\DBDriverInterface;
17
-use chillerlan\DatabaseTest\TestAbstract;
18 18
 
19 19
 abstract class DriverTestAbstract extends TestAbstract{
20 20
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -172,7 +172,7 @@
 block discarded – undo
172 172
 	 * @expectedExceptionMessage sql error:
173 173
 	 */
174 174
 	public function testMultiCallbackSQLError(){
175
-		$this->DBDriver->multi_callback($this->SQL_RAW_ERROR, [[0]], function(){return [];});
175
+		$this->DBDriver->multi_callback($this->SQL_RAW_ERROR, [[0]], function(){return []; });
176 176
 	}
177 177
 
178 178
 	public function testMultiCallback(){
Please login to merge, or discard this patch.