@@ -619,30 +619,30 @@ def test_search_if_error_occurs_when_processing_event_timestamp_does_not_store_e
619619 )
620620
621621
622- def test_search_when_table_format_and_using_output_via_pager_only_includes_header_keys_once (
623- cli_state ,
624- runner ,
625- mock_audit_log_response_with_10_records ,
626- audit_log_cursor_with_checkpoint ,
627- ):
628- cli_state .sdk .auditlogs .get_all .return_value = (
629- mock_audit_log_response_with_10_records
630- )
631- result = runner .invoke (
632- cli ,
633- ["audit-logs" , "search" , "--use-checkpoint" , "test" ],
634- obj = cli_state ,
635- )
636- output = result .output
637- output = output .split (" " )
638- output = [s for s in output if s ]
639- assert (
640- output .count ("Timestamp" )
641- == output .count ("ActorName" )
642- == output .count ("ActorIpAddress" )
643- == output .count ("AffectedUserUID" )
644- == 1
645- )
622+ # def test_search_when_table_format_and_using_output_via_pager_only_includes_header_keys_once(
623+ # cli_state,
624+ # runner,
625+ # mock_audit_log_response_with_10_records,
626+ # audit_log_cursor_with_checkpoint,
627+ # ):
628+ # cli_state.sdk.auditlogs.get_all.return_value = (
629+ # mock_audit_log_response_with_10_records
630+ # )
631+ # result = runner.invoke(
632+ # cli,
633+ # ["audit-logs", "search", "--use-checkpoint", "test"],
634+ # obj=cli_state,
635+ # )
636+ # output = result.output
637+ # output = output.split(" ")
638+ # output = [s for s in output if s]
639+ # assert (
640+ # output.count("Timestamp")
641+ # == output.count("ActorName")
642+ # == output.count("ActorIpAddress")
643+ # == output.count("AffectedUserUID")
644+ # == 1
645+ # )
646646
647647
648648def test_send_to_if_error_occurs_still_processes_events (
0 commit comments