diff --git a/lib/reporting/authentication_report.rb b/lib/reporting/authentication_report.rb index b25238a73ed..e2dfe27eba9 100644 --- a/lib/reporting/authentication_report.rb +++ b/lib/reporting/authentication_report.rb @@ -201,19 +201,6 @@ def funnel_metrics_table denominator: email_confirmation, ), ], - [ - 'AAL2 Authentication Requests from Partner', - oidc_auth_request, - format_as_percent(numerator: oidc_auth_request, denominator: oidc_auth_request), - ], - [ - 'AAL2 Authenticated Requests', - sp_redirect_initiated_after_oidc, - format_as_percent( - numerator: sp_redirect_initiated_after_oidc, - denominator: oidc_auth_request, - ), - ], ] end diff --git a/spec/jobs/reports/authentication_report_spec.rb b/spec/jobs/reports/authentication_report_spec.rb index 28b0c93d851..24b9afcb873 100644 --- a/spec/jobs/reports/authentication_report_spec.rb +++ b/spec/jobs/reports/authentication_report_spec.rb @@ -42,8 +42,6 @@ ['New Users Completed IAL1 Password Setup', '85', '85%'], ['New Users Completed IAL1 MFA', '80', '80%'], ['New IAL1 Users Consented to Partner', '75', '75%'], - ['AAL2 Authentication Requests from Partner', '12', '12%'], - ['AAL2 Authenticated Requests', '50', '50%'], ], ), ] diff --git a/spec/lib/reporting/authentication_report_spec.rb b/spec/lib/reporting/authentication_report_spec.rb index 48eddeed860..3337375f26a 100644 --- a/spec/lib/reporting/authentication_report_spec.rb +++ b/spec/lib/reporting/authentication_report_spec.rb @@ -159,8 +159,6 @@ def expected_tables(strings: false) ['New Users Completed IAL1 Password Setup', strings ? '3' : 3, '75.0%'], ['New Users Completed IAL1 MFA', strings ? '2' : 2, '50.0%'], ['New IAL1 Users Consented to Partner', strings ? '1' : 1, '25.0%'], - ['AAL2 Authentication Requests from Partner', strings ? '5' : 5, '100.0%'], - ['AAL2 Authenticated Requests', strings ? '2' : 2, '40.0%'], ], ] end