mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
Fixed tests for members importer
refs https://github.com/TryGhost/Team/issues/1202 This was incorrectly setting the subscribed value to false due to the bug referenced
This commit is contained in:
parent
3a263b08eb
commit
6b99f0382f
1 changed files with 1 additions and 1 deletions
|
@ -365,7 +365,7 @@ describe('Members API', function () {
|
|||
should.exist(importedMember2);
|
||||
importedMember2.name.should.equal('test');
|
||||
should(importedMember2.note).equal('test note');
|
||||
importedMember2.subscribed.should.equal(false);
|
||||
importedMember2.subscribed.should.equal(true);
|
||||
importedMember2.labels.length.should.equal(2);
|
||||
testUtils.API.isISO8601(importedMember2.created_at).should.be.true();
|
||||
importedMember2.created_at.should.equal('1991-10-02T20:30:31.000Z');
|
||||
|
|
Loading…
Add table
Reference in a new issue