Skip to content

Commit

Permalink
Update tests to skip tip
Browse files Browse the repository at this point in the history
  • Loading branch information
josephspurrier committed Mar 7, 2017
1 parent 85e356f commit 80fc827
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@ go:
#- 1.1
#- 1.2
#- 1.3
#- 1.4
#- 1.5
- 1.4
- 1.5
- 1.6
- 1.7
- tip
- 1.8
#- tip

before_install:
- go get github.com/axw/gocov/gocov
Expand Down
4 changes: 2 additions & 2 deletions controller/login/login_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ func TestStoreAuthenticateFail(t *testing.T) {
val := url.Values{}
r.Form = val
r.Form.Add("email", "jdoe2@example.com")
r.Form.Add("password", "Pa$$w0rd")
r.Form.Add("password", "BadPa$$w0rd")

// Call the handler.
h := new(login.Handler)
Expand All @@ -110,7 +110,7 @@ func TestStoreAuthenticateFail(t *testing.T) {
// Create a new user.
u := new(user.Item)
u.Email = "jdoe2@example.com"
u.Password = "BadPa$$w0rd"
u.Password = "Pa$$w0rd"
h.UserService.CreateUser(u)

h.ViewService = view.New("../../view", "tmpl")
Expand Down

0 comments on commit 80fc827

Please sign in to comment.