Skip to content

Commit 071f47c

Browse files
committed
Fixed PostgreSQL tests
1 parent 2d369bc commit 071f47c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

tests/Database/Table/bugs/bug1342.postgre.phpt

+3-2
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,10 @@ $context->query('
2020
');
2121

2222

23-
$insertedRows = $context->table('bug1342')->insert([
23+
$inserted = $context->table('bug1342')->insert([
2424
'a1' => 1,
2525
'a2' => 2,
2626
]);
2727

28-
Assert::same(1, $insertedRows);
28+
Assert::same(1, $inserted->a1);
29+
Assert::same(2, $inserted->a2);

0 commit comments

Comments
 (0)