Skip to content

Commit

Permalink
Fix a typo in an example
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderMoskovkin authored Jan 19, 2017
1 parent cf084db commit 77ad9f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ test('Check property of element', async t => {
await t
.expect(developerNameInput.value).eql('', 'input is empty')
.typeText(developerNameInput, 'Peter Parker')
.expect(developerNameInput.value).constains('Peter', 'input contains text "Peter"');
.expect(developerNameInput.value).contains('Peter', 'input contains text "Peter"');
});
```

Expand Down

0 comments on commit 77ad9f7

Please sign in to comment.