Skip to content

Commit 9c0712d

Browse files
committed
Make XFAILED test less broken
At least allow it to print some output rather than throw right away...
1 parent 311a77d commit 9c0712d

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

ext/pdo/tests/pdo_022.phpt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ require_once getenv('REDIR_TEST_DIR') . 'pdo_test.inc';
2626
$db = PDOTest::factory();
2727

2828
$db->exec('CREATE TABLE test(id INT NOT NULL PRIMARY KEY, val VARCHAR(10), val2 VARCHAR(16))');
29-
$db->exec('insert2', "INSERT INTO test VALUES(:first, :second, :third)");
3029

3130
$data = array(
3231
array('10', 'Abc', 'zxy'),
@@ -37,7 +36,6 @@ $data = array(
3736
array('60', 'Pqr', 'kji'),
3837
);
3938

40-
4139
// Insert using question mark placeholders
4240
$stmt = $db->prepare("INSERT INTO test VALUES(?, ?, ?)");
4341
foreach ($data as $row) {

0 commit comments

Comments
 (0)