File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -398,7 +398,7 @@ fn up_once_suppresses_an_expanded_direct_codex_agent_without_mutating_hooks() {
398398 . env ( "CODEX_BIN" , "/opt/bin/codex" )
399399 . output ( )
400400 . unwrap ( ) ;
401- assert ! ( output. status. success( ) ) ;
401+ assert ! ( ! output. status. success( ) ) ;
402402 let report = format ! (
403403 "{}{}" ,
404404 String :: from_utf8_lossy( & output. stdout) ,
@@ -536,7 +536,7 @@ fn missing_hooks_do_not_rewrite_or_stop_an_already_live_codex_agent() {
536536 String :: from_utf8_lossy( & output. stderr)
537537 ) ;
538538
539- assert ! ( output. status. success( ) , "{report}" ) ;
539+ assert ! ( ! output. status. success( ) , "{report}" ) ;
540540 assert ! ( report. contains( "materialization deferred" ) , "{report}" ) ;
541541 assert ! ( report. contains( "adopted (1): worker" ) , "{report}" ) ;
542542 assert ! (
@@ -597,7 +597,7 @@ fn missing_hooks_cannot_hide_a_shared_workspace_render_conflict() {
597597 String :: from_utf8_lossy( & output. stderr)
598598 ) ;
599599
600- assert ! ( output. status. success( ) , "{report}" ) ;
600+ assert ! ( ! output. status. success( ) , "{report}" ) ;
601601 assert ! ( report. contains( "materialization deferred" ) , "{report}" ) ;
602602 assert ! ( report. contains( "conflicting render ownership" ) , "{report}" ) ;
603603 assert ! (
You can’t perform that action at this time.
0 commit comments