不要怂,就是干,撸起袖子干!

Commit 4297b31b by Seth Samuel

Fix test data typo

1 parent 36580d98
Showing with 4 additions and 4 deletions
......@@ -1334,8 +1334,8 @@ describe(Support.getTestDialectTeaser("DAOFactory"), function () {
paranoid: true
})
, data = [{ username: 'Peter', secretValue: '42' },
{ username: 'Paul', secretValue: '42' },
{ username: 'Bob', secretValue: '43' }]
{ username: 'Paul', secretValue: '43' },
{ username: 'Bob', secretValue: '44' }]
ParanoidUser.sync({ force: true }).success(function() {
ParanoidUser.bulkCreate(data).success(function() {
......
......@@ -1828,8 +1828,8 @@ describe(Support.getTestDialectTeaser("DAO"), function () {
paranoid: true
})
, data = [{ username: 'Peter', secretValue: '42' },
{ username: 'Paul', secretValue: '42' },
{ username: 'Bob', secretValue: '43' }]
{ username: 'Paul', secretValue: '43' },
{ username: 'Bob', secretValue: '44' }]
ParanoidUser.sync({ force: true }).success(function() {
ParanoidUser.bulkCreate(data).success(function() {
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!