Skip to content

Commit c38173b

Browse files
committed
chore: fix description of test
1 parent 3d9c00f commit c38173b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/backend/test/e2e/timelines.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1282,7 +1282,7 @@ describe('Timelines', () => {
12821282
});
12831283

12841284
/** @see https://github.com/misskey-dev/misskey/issues/14000 */
1285-
test.concurrent('FTT: キャッシュをパージした後でも sinceId による絞り込みが正しく動作する', async () => {
1285+
test.concurrent('FTT: sinceId にキャッシュより古いノートを指定しても、sinceId による絞り込みが正しく動作する', async () => {
12861286
const alice = await signup();
12871287
const noteSince = await post(alice, { text: 'Note where id will be `sinceId`.' });
12881288
const note1 = await post(alice, { text: '1' });
@@ -1294,7 +1294,7 @@ describe('Timelines', () => {
12941294
assert.deepStrictEqual(res.body, [note1, note2, note3]);
12951295
});
12961296

1297-
test.concurrent('FTT: キャッシュをパージした後でも sinceId と untilId による絞り込みが正しく動作する', async () => {
1297+
test.concurrent('FTT: sinceId にキャッシュより古いノートを指定しても、sinceId と untilId による絞り込みが正しく動作する', async () => {
12981298
const alice = await signup();
12991299
const noteSince = await post(alice, { text: 'Note where id will be `sinceId`.' });
13001300
const note1 = await post(alice, { text: '1' });

0 commit comments

Comments
 (0)