Skip to content

Commit

Permalink
Fix client typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jefftmarks committed Dec 29, 2024
1 parent 9a52f25 commit 7fa2899
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/gi/lcpe/client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,11 @@ def get_licenses_and_certs_v1(params = {})
def get_license_and_cert_details_v1(params = {})
enriched_id = params[:id]
response = perform(:get, "v1/lcpe/lacs/#{enriched_id}", params.except(:id))
gids_response(response)
end

def get_exams_v1(params = {})
response = perform(:get, "v1/lcpe/exams", params)
response = perform(:get, 'v1/lcpe/exams', params)
gids_response(response)
end
end
Expand Down

0 comments on commit 7fa2899

Please sign in to comment.