Skip to content

Commit

Permalink
More readable
Browse files Browse the repository at this point in the history
  • Loading branch information
MathiasReker committed Dec 12, 2018
1 parent 98554c9 commit b0a5cfc
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests-legacy/Integration/Adapter/AdapterDatabaseTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ public function setUp()
public function testValuesAreEscapedDataProvider()
{
return array(
array( 'hello' , 'hello' ),
array( '\\\'inject' , '\'inject' ),
array( '\\"inject' , '"inject' ),
array( 42 , 42 ),
array( 4.2 , 4.2 ),
array( '4\\\'200' , '4\'200' ),
array('hello', 'hello'),
array('\\\'inject', '\'inject'),
array('\\"inject', '"inject'),
array(42, 42),
array(4.2, 4.2),
array('4\\\'200', '4\'200'),
);
}

Expand Down

0 comments on commit b0a5cfc

Please sign in to comment.