We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e1f62f commit d2c6162Copy full SHA for d2c6162
tests/system/Database/Live/WriteTypeQueryTest.php
@@ -39,12 +39,11 @@ final class WriteTypeQueryTest extends CIUnitTestCase
39
*/
40
private function testAssertTypeReturning($dbDriver): string
41
{
42
- $assertType = 'assertTrue';
43
if ($dbDriver === 'Postgre') {
44
- $assertType = 'assertFalse';
+ return 'assertFalse';
45
}
46
47
- return $assertType;
+ return 'assertTrue';
48
49
50
public function testSet(): void
0 commit comments