Skip to content

Commit e95b8d3

Browse files
authored
fix CI error
1 parent 79a76db commit e95b8d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/includes/usage-examples/FindOneTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@ public function testQBFindOne(): void
5454
->orderBy('_id')
5555
->first();
5656

57-
echo $movie['title'];
57+
echo $movie->title;
5858
// end-qb-find-one
5959

60-
$this->assertSame($movie['title'], 'The Shawshank Redemption');
60+
$this->assertSame($movie->title, 'The Shawshank Redemption');
6161
$this->expectOutputString('The Shawshank Redemption');
6262
}
6363
}

0 commit comments

Comments
 (0)