@@ -36,10 +36,12 @@ public function testAccessAsAdmin(): void
36
36
'groups ' => ['id ' , 'icpc_id ' , 'name ' , 'hidden ' ],
37
37
'organizations ' => ['id ' , 'icpc_id ' , 'name ' , 'formal_name ' , 'country ' , 'country_flag ' ],
38
38
'teams ' => ['id ' , 'icpc_id ' , 'name ' , 'display_name ' , 'organization_id ' , 'group_ids ' ],
39
+ 'accounts ' => ['id ' , 'username ' , 'name ' , 'type ' ],
39
40
'state ' => ['started ' , 'frozen ' , 'ended ' , 'thawed ' , 'finalized ' , 'end_of_updates ' ],
40
41
'submissions ' => ['id ' , 'language_id ' , 'problem_id ' , 'team_id ' , 'time ' , 'contest_time ' , 'entry_point ' , 'files ' ],
41
42
'judgements ' => ['id ' , 'submission_id ' , 'judgement_type_id ' , 'start_time ' , 'start_contest_time ' , 'end_time ' , 'end_contest_time ' , 'max_run_time ' ],
42
43
'runs ' => ['id ' , 'judgement_id ' , 'ordinal ' , 'judgement_type_id ' , 'time ' , 'contest_time ' , 'run_time ' ],
44
+ 'clarifications ' => ['id ' , 'from_team_id ' , 'problem_id ' , 'text ' , 'time ' , 'contest_time ' ],
43
45
'awards ' => ['id ' , 'citation ' , 'team_ids ' ],
44
46
];
45
47
@@ -54,7 +56,9 @@ public function testAccessAsAdmin(): void
54
56
break ;
55
57
}
56
58
}
57
- self ::assertSame ($ expectedProperties , $ actualProperties );
59
+ foreach ($ expectedProperties as $ property ) {
60
+ self ::assertContains ($ property , $ actualProperties );
61
+ }
58
62
}
59
63
}
60
64
}
0 commit comments