mirror of
https://github.com/teamcapybara/capybara.git
synced 2022-11-09 12:08:07 -05:00
Fix incorrect password in RSpec example.
The example given for a successful sign in test was incorrect as the password for the created user and the password to sign in did not match. Thanks to @amelialaundy for the catch while going over the docs.
This commit is contained in:
parent
da85ae7226
commit
95ee6d2708
1 changed files with 1 additions and 1 deletions
|
@ -99,7 +99,7 @@ You can now write your specs like so:
|
|||
```ruby
|
||||
describe "the signin process", :type => :feature do
|
||||
before :each do
|
||||
User.make(:email => 'user@example.com', :password => 'caplin')
|
||||
User.make(:email => 'user@example.com', :password => 'password')
|
||||
end
|
||||
|
||||
it "signs me in" do
|
||||
|
|
Loading…
Reference in a new issue