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:
Samson Ootoovak 2014-08-31 19:23:26 +12:00
parent da85ae7226
commit 95ee6d2708
1 changed files with 1 additions and 1 deletions

View File

@ -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