test: fix test expecting Note when it is now Article

This commit is contained in:
Julian Lam
2025-04-15 10:06:04 -04:00
parent 3c4be7738c
commit 5d94f2cad4

View File

@@ -359,8 +359,8 @@ describe('Controllers', () => {
assert.strictEqual(response.statusCode, 200);
});
it('should return a Note type object', () => {
assert.strictEqual(body.type, 'Note');
it('should return a Article type object', () => {
assert.strictEqual(body.type, 'Article');
});
});