Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions routes/accounts_test.go
Original file line numberDiff line numberDiff line change
Expand Up@@ -502,7 +502,7 @@ func TestAccountsRoute(t *testing.T) {
So(err, ShouldBeNil)

So(response.Success, ShouldBeTrue)
So(response.Account.Name, ShouldEqual, "jeremy")
So(response.Account.Name, ShouldEqual, account.Name)
})

Convey("Getting any non-me account should return a proper response", func() {
Expand DownExpand Up@@ -546,7 +546,6 @@ func TestAccountsRoute(t *testing.T) {

So(response.Message, ShouldEqual, "Your account has been successfully updated")
So(response.Success, ShouldBeTrue)
So(response.Account.Name, ShouldEqual, "jeremy")
So(response.Account.AltEmail, ShouldEqual, "john.cabbage@example.com")
})

Expand Down