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

Commit 9013836f by papb

test(model): fix flaky timestamp test (2)

Fixes mistake introduced in 416a7cee
1 parent 416a7cee
Showing with 1 additions and 1 deletions
......@@ -730,7 +730,7 @@ describe(Support.getTestDialectTeaser('Model'), () => {
await delay(10);
const user2 = await User.create({});
for (const user in [user1, user2]) {
for (const user of [user1, user2]) {
expect(user).to.be.ok;
expect(user.created_time).to.be.ok;
expect(user.updated_time).to.be.ok;
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!