Skip to content

Commit 5890b0c

Browse files
committed
chore: Fix typo (#2836)
1 parent 72d991c commit 5890b0c

File tree

1 file changed

+6
-6
lines changed
  • docs/dev-notes/2025-12-03/add_tests_for_contest_table_provider

1 file changed

+6
-6
lines changed

docs/dev-notes/2025-12-03/add_tests_for_contest_table_provider/plan.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -170,8 +170,8 @@ test('expects to generate correct table structure', () => {
170170
test('expects to return correct round id', () => {
171171
const provider = new ABC042ToABC125Provider(ContestType.ABC);
172172

173-
expect(provider.getRoundId('abc042')).toBe('abc042');
174-
expect(provider.getRoundId('abc125')).toBe('abc125');
173+
expect(provider.getContestRoundIds('abc042')).toBe('abc042');
174+
expect(provider.getContestRoundIds('abc125')).toBe('abc125');
175175
});
176176
```
177177

@@ -181,7 +181,7 @@ test('expects to return correct round id', () => {
181181
test('expects to return correct header id', () => {
182182
const provider = new ABC042ToABC125Provider(ContestType.ABC);
183183

184-
expect(provider.getHeaderId()).toMatch(/fromAbc042ToAbc125/);
184+
expect(provider.getHeaderIdsForTask()).toMatch(/fromAbc042ToAbc125/);
185185
});
186186
```
187187

@@ -375,8 +375,8 @@ test('expects to generate correct table structure', () => {
375375
test('expects to return correct round id', () => {
376376
const provider = new ARC058ToARC103Provider(ContestType.ARC);
377377

378-
expect(provider.getRoundId('arc058')).toBe('arc058');
379-
expect(provider.getRoundId('arc103')).toBe('arc103');
378+
expect(provider.getContestRoundIds('arc058')).toBe('arc058');
379+
expect(provider.getContestRoundIds('arc103')).toBe('arc103');
380380
});
381381
```
382382

@@ -386,7 +386,7 @@ test('expects to return correct round id', () => {
386386
test('expects to return correct header id', () => {
387387
const provider = new ARC058ToARC103Provider(ContestType.ARC);
388388

389-
expect(provider.getHeaderId()).toMatch(/fromArc058ToArc103/);
389+
expect(provider.getHeaderIdsForTask()).toMatch(/fromArc058ToArc103/);
390390
});
391391
```
392392

0 commit comments

Comments
 (0)