Skip to content
Snippets Groups Projects

Sync audit events to new tables

Merged Harsimar Sandhu requested to merge 470481-sync-audit-events-to-new-tables into master
@@ -94,7 +94,7 @@
expect { service.security_event }.to change(AuditEvent, :count).by(1)
end
context 'when sync_audit_events_to_new_tables is disabled does not create audit events' do
context 'when sync_audit_events_to_new_tables is disabled' do
before do
stub_feature_flags(sync_audit_events_to_new_tables: false)
end
@@ -125,7 +125,7 @@
end
end
context 'when sync_audit_events_to_new_tables is enabled it creates audit events' do
context 'when sync_audit_events_to_new_tables is enabled' do
before do
stub_feature_flags(sync_audit_events_to_new_tables: true)
end
Loading