forked from kohler/hotcrp
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
And type declarations.
- Loading branch information
Showing
5 changed files
with
37 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -835,10 +835,10 @@ function sorted_conflicts(PaperInfo $prow, $contacts) { | |
xassert_eqq($paper3->conflict_type($user_rguerin), Conflict::GENERAL); | ||
xassert_assign($user_chair, "paper,action,user,conflict\n3,conflict,[email protected],pinned\n"); | ||
$paper3->load_conflicts(false); | ||
xassert_eqq($paper3->conflict_type($user_rguerin), Conflict::PINNED); | ||
xassert_eqq($paper3->conflict_type($user_rguerin), Conflict::set_pinned(Conflict::GENERAL, true)); | ||
xassert_assign($user_sclin, "paper,action,user,conflict type\n3,conflict,[email protected],pinned\n"); | ||
$paper3->load_conflicts(false); | ||
xassert_eqq($paper3->conflict_type($user_rguerin), Conflict::PINNED); | ||
xassert_eqq($paper3->conflict_type($user_rguerin), Conflict::set_pinned(Conflict::GENERAL, true)); | ||
xassert_assign($user_chair, "paper,action,user,conflicttype\n3,conflict,[email protected],none\n"); | ||
xassert_assign($user_sclin, "paper,action,user,conflicttype\n3,conflict,[email protected],conflict\n"); | ||
$paper3->load_conflicts(false); | ||
|