File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed
atcoder-problems-backend/sql-client/tests Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff 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 {
You can’t perform that action at this time.
0 commit comments