FIX: Broken test

This commit is contained in:
Robin Ward 2016-02-11 16:51:50 -05:00
parent aa31f3081a
commit 960f9ed132
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ postStreamTest('deleted posts', {
posts() {
const topic = Topic.create({ details: { created_by: { id: 123 } } });
return [
Post.create({ topic, id: 1, post_number: 1, deleted_at: new Date().getTime() }),
Post.create({ topic, id: 1, post_number: 1, deleted_at: new Date().toString() }),
];
},