Skip to content

Commit b933a54

Browse files
committed
fix: test
1 parent a4989a8 commit b933a54

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

atcoder-problems-backend/sql-client/tests/test_rated_point_sum.rs

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ async fn setup_contests(pool: &PgPool) {
4545
id: SAME_CONTEST_RATED.to_string(),
4646
start_epoch_second: FIRST_AGC_EPOCH_SECOND,
4747
duration_second: 1000,
48-
title: "Unrated New Contest".to_string(),
48+
title: "Rated New Contest".to_string(),
4949
rate_change: "All".to_string(),
5050
},
5151
Contest {
@@ -129,6 +129,16 @@ async fn setup_contest_problems(pool: &PgPool) {
129129
problem_index: "1".to_string(),
130130
contest_id: HEURISTIC_CONTEST.to_string(),
131131
},
132+
ContestProblem {
133+
problem_id: "problem7".to_string(),
134+
problem_index: "7".to_string(),
135+
contest_id: RATED_CONTEST.to_string(),
136+
},
137+
ContestProblem {
138+
problem_id: "problem8".to_string(),
139+
problem_index: "8".to_string(),
140+
contest_id: SAME_CONTEST_RATED.to_string(),
141+
},
132142
];
133143

134144
for problem in problems {

0 commit comments

Comments
 (0)