Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions lib/reporting/irs_verification_report.rb
Original file line number Diff line number Diff line change
Expand Up @@ -110,12 +110,12 @@ def funnel_table
to_percent(phone_verification_success_results, verification_demand_results),
],
[
'Total Verified Success',
'Verification Successes',
total_verified_results,
to_percent(total_verified_results, verification_demand_results),
],
[
'Verification Fallouts',
'Verification Failures',
verification_demand_results - total_verified_results,
to_percent(
verification_demand_results - total_verified_results,
Expand All @@ -133,8 +133,8 @@ def data_definition_table
'Users who successfully completed document authentication'],
['Information Validation Success', 'Users who successfully validated their information'],
['Phone Verification Success', 'Users who successfully verified their using their phone'],
['Total Verified', 'Users who completed the entire process'],
['Verification Fallouts',
['Verification Successes', 'Users who completed the entire process'],
['Verification Failures',
'The percentage of users that did not complete the identity verification process'],
]
end
Expand Down
4 changes: 2 additions & 2 deletions spec/lib/reporting/irs_verification_report_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ def previous_week_range
['Document Authentication Success', 80, 80.0],
['Information Verification Success', 70, 70.0],
['Phone Verification Success', 60, 60.0],
['Total Verified Success', 50, 50.0],
['Verification Fallouts', 50, 50.0],
['Verification Successes', 50, 50.0],
['Verification Failures', 50, 50.0],
)
end
end
Expand Down