@@ -57,14 +57,14 @@ public function testQueryFieldSomeNull()
5757 $ vals [] = ($ node ->hasProperty ('foo ' ) ? $ node ->getPropertyValue ('foo ' ) : null );
5858 }
5959 $ this ->assertContains ('bar ' , $ vals );
60- $ this ->assertCount (9 , $ vals );
60+ $ this ->assertCount (10 , $ vals );
6161
6262 $ vals = array ();
6363 foreach ($ result ->getRows () as $ row ) {
6464 $ vals [] = $ row ->getValue ('foo ' );
6565 }
6666 $ this ->assertContains ('bar ' , $ vals );
67- $ this ->assertCount (9 , $ vals );
67+ $ this ->assertCount (10 , $ vals );
6868 }
6969
7070 public function testQueryFieldSelector ()
@@ -182,7 +182,7 @@ public function testQueryLeftJoin()
182182 }
183183
184184 // We get 9 results (idExample comes back multiple times because of the join)
185- $ this ->assertCount (9 , $ result ->getRows ());
185+ $ this ->assertCount (10 , $ result ->getRows ());
186186 $ this ->assertEquals (array (
187187 'index.txt ' => null ,
188188 'idExample ' => null ,
@@ -212,8 +212,8 @@ public function testQueryRightJoin()
212212 $ vals [basename ($ row ->getPath ('file ' ))] = $ row ->getValue ('target.stringToCompare ' );
213213 }
214214
215- // We get 9 results (idExample comes back multiple times because of the join)
216- $ this ->assertCount (9 , $ result ->getRows ());
215+ // We get 10 results (idExample comes back multiple times because of the join)
216+ $ this ->assertCount (10 , $ result ->getRows ());
217217 $ this ->assertEquals (array (
218218 'index.txt ' => null ,
219219 'idExample ' => null ,
@@ -315,7 +315,7 @@ public function testQueryOrderWithMissingProperty()
315315 $ vals [] = $ row ->getValue ('data.zeronumber ' );
316316 }
317317 // rows that do not have that field are empty string. empty is before fields with values
318- $ this ->assertEquals (array ('' , '' , '' , '' , '' , '' , '' , '' , 0 ), $ vals );
318+ $ this ->assertEquals (array ('' , '' , '' , '' , '' , '' , '' , '' , '' , 0 ), $ vals );
319319 }
320320
321321 public function testQueryMultiValuedProperty ()
0 commit comments