File tree 1 file changed +2
-2
lines changed
packages/backend/test/e2e
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1282,7 +1282,7 @@ describe('Timelines', () => {
1282
1282
} ) ;
1283
1283
1284
1284
/** @see https://github.com/misskey-dev/misskey/issues/14000 */
1285
- test . concurrent ( 'FTT: キャッシュをパージした後でも sinceId による絞り込みが正しく動作する' , async ( ) => {
1285
+ test . concurrent ( 'FTT: sinceId にキャッシュより古いノートを指定しても、 sinceId による絞り込みが正しく動作する' , async ( ) => {
1286
1286
const alice = await signup ( ) ;
1287
1287
const noteSince = await post ( alice , { text : 'Note where id will be `sinceId`.' } ) ;
1288
1288
const note1 = await post ( alice , { text : '1' } ) ;
@@ -1294,7 +1294,7 @@ describe('Timelines', () => {
1294
1294
assert . deepStrictEqual ( res . body , [ note1 , note2 , note3 ] ) ;
1295
1295
} ) ;
1296
1296
1297
- test . concurrent ( 'FTT: キャッシュをパージした後でも sinceId と untilId による絞り込みが正しく動作する' , async ( ) => {
1297
+ test . concurrent ( 'FTT: sinceId にキャッシュより古いノートを指定しても、 sinceId と untilId による絞り込みが正しく動作する' , async ( ) => {
1298
1298
const alice = await signup ( ) ;
1299
1299
const noteSince = await post ( alice , { text : 'Note where id will be `sinceId`.' } ) ;
1300
1300
const note1 = await post ( alice , { text : '1' } ) ;
You can’t perform that action at this time.
0 commit comments