Skip to content

Commit ad270ed

Browse files
committed
Remove unnecessary argument from code example
1 parent 429024a commit ad270ed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/content/5/fi/osa5d.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -872,13 +872,13 @@ describe('Note app', () => {
872872
})
873873

874874
test('a new note can be created', async ({ page }) => {
875-
await createNote(page, 'a note created by playwright', true)
875+
await createNote(page, 'a note created by playwright')
876876
await expect(page.getByText('a note created by playwright')).toBeVisible()
877877
})
878878

879879
describe('and a note exists', () => {
880880
beforeEach(async ({ page }) => {
881-
await createNote(page, 'another note by playwright', true)
881+
await createNote(page, 'another note by playwright')
882882
})
883883

884884
test('importance can be changed', async ({ page }) => {

0 commit comments

Comments
 (0)