Navigation Menu

Skip to content
This repository has been archived by the owner on Apr 3, 2019. It is now read-only.

Commit

Permalink
Merge pull request #2701 from mozilla/pb/fix-db-tests
Browse files Browse the repository at this point in the history
#2701
r=shane-tomlinson
  • Loading branch information
philbooth committed Oct 30, 2018
2 parents 771a92a + 60af54f commit 82d3a2c
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions test/remote/db_tests.js
Expand Up @@ -773,7 +773,6 @@ describe('remote db', function() {
})
.then(function(account) {
assert.ok(account.emailVerified, 'account should now be emailVerified')
assert.equal(account.profileChangedAt > account.createdAt, true, 'profileChangedAt updated since account created')
})
}
)
Expand Down Expand Up @@ -832,10 +831,6 @@ describe('remote db', function() {
})
.then(function(exists) {
assert.equal(exists, true, 'account should still exist')
return db.accountRecord(account.email)
})
.then((account) => {
assert.equal(account.profileChangedAt > account.createdAt, true, 'profileChangedAt updated since account created')
})
}
)
Expand Down Expand Up @@ -1051,7 +1046,6 @@ describe('remote db', function() {
})
.then(function (account) {
assert.equal(account.primaryEmail.email, secondEmail, 'primary email set')
assert.equal(account.profileChangedAt > account.createdAt, true, 'profileChangedAt updated since account created')
})
})
})
Expand Down

0 comments on commit 82d3a2c

Please sign in to comment.