diff --git a/changelog.md b/changelog.md index 1b2848b0..970d3964 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,8 @@ # Changelog +## Version 0.16.5 + - Hotfix: adding a new note meant some tests were running against the wrong note + ## Version 0.16.4 - Improve CSP headers - Fix the map style menu in mapbox maps diff --git a/tests/Unit/NotesTest.php b/tests/Unit/NotesTest.php index b8f584b2..630516e0 100644 --- a/tests/Unit/NotesTest.php +++ b/tests/Unit/NotesTest.php @@ -29,7 +29,7 @@ class NotesTest extends TestCase public function test_default_image_used_in_makehcards_method() { $expected = '
Hi Tantek Çelik t
Hi @bob
' . PHP_EOL; - $note = Note::find(15); + $note = Note::find(16); $this->assertEquals($expected, $note->note); }