Skip to content

Commit 510ebfd

Browse files
committed
Fixed expected result for join test
1 parent 5bd09c3 commit 510ebfd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Functional/JoinTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,11 +161,11 @@ public function testEqJoinId()
161161
$excpected = array(
162162
array(
163163
'left' => array('id' => 1, 'other' => 'a'),
164-
'right' => array('id' => 'b', 'other' => 1 )
164+
'right' => array('id' => 'a', 'other' => 1 )
165165
),
166166
array(
167167
'left' => array('id' => 1, 'other' => 'a'),
168-
'right' => array('id' => 'a', 'other' => 1 )
168+
'right' => array('id' => 'b', 'other' => 1 )
169169
),
170170
);
171171

0 commit comments

Comments
 (0)