FIX: `deleted` is a computed property of Topic

This commit is contained in:
Robin Ward 2020-07-20 14:43:37 -04:00
parent e625aeeb0d
commit 71b0400501
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ const buildTopic = function(pinned = true) {
return Topic.create({
id: 1234,
title: "Qunit Test Topic",
deleted: false,
deleted_at: new Date(),
pinned
});
};