Skip to content

Commit

Permalink
Addressing failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffersoncasimir committed Feb 12, 2025
1 parent 3828c16 commit 85b69ae
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/api/php/provisioners/candidatesprovisioner.class.inc
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class CandidatesProvisioner extends DBRowProvisioner
parent::__construct(
$this->loris,
'
SELECT
SELECT
c.CandID as CandID,
p.Name as ProjectName,
c.RegistrationProjectID as ProjectID,
Expand All @@ -61,6 +61,7 @@ class CandidatesProvisioner extends DBRowProvisioner
LEFT JOIN Project p
ON (c.RegistrationProjectID = p.ProjectID)
WHERE c.Active=\'Y\'
ORDER BY c.CandID
',
[]
);
Expand Down

0 comments on commit 85b69ae

Please sign in to comment.