Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -229,10 +229,10 @@ describe('prepareContestProviderPresets', () => {
test('expects to create DPs preset correctly', () => {
const group = prepareContestProviderPresets().dps();

expect(group.getGroupName()).toBe('EDPC・TDPC・NDPC・FPS 24');
expect(group.getGroupName()).toBe('xDPC・FPS 24');
expect(group.getMetadata()).toEqual({
buttonLabel: 'EDPC・TDPC・NDPC・FPS 24',
ariaLabel: 'EDPC, TDPC, NDPC and FPS 24 contests',
buttonLabel: 'xDPC・FPS 24',
ariaLabel: 'xDPC and FPS 24 contests',
});
expect(group.getSize()).toBe(4);
expect(group.getProvider(ContestType.EDPC)).toBeInstanceOf(EDPCProvider);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -185,9 +185,9 @@ export const prepareContestProviderPresets = () => {
* DP group (EDPC, TDPC, NDPC, and FPS 24)
*/
dps: () =>
new ContestTableProviderGroup(`EDPC・TDPC・NDPC・FPS 24`, {
buttonLabel: 'EDPC・TDPC・NDPC・FPS 24',
ariaLabel: 'EDPC, TDPC, NDPC and FPS 24 contests',
new ContestTableProviderGroup(`xDPC・FPS 24`, {
buttonLabel: 'xDPC・FPS 24',
ariaLabel: 'xDPC and FPS 24 contests',
}).addProviders(
new EDPCProvider(ContestType.EDPC),
new TDPCProvider(ContestType.TDPC),
Expand Down
Loading