@@ -2273,10 +2273,10 @@ BEFORE UPDATE ON files
22732273 Assert . False ( json . GetProperty ( "fold_ready" ) . GetBoolean ( ) ) ;
22742274
22752275 var ( _, statusJson ) = RunStatusAndCaptureJson ( [ "--db" , dbPath , "--json" ] ) ;
2276- Assert . True ( statusJson . GetProperty ( "graph_table_available" ) . GetBoolean ( ) ) ;
2276+ Assert . False ( statusJson . GetProperty ( "graph_table_available" ) . GetBoolean ( ) ) ;
22772277 Assert . True ( statusJson . GetProperty ( "issues_table_available" ) . GetBoolean ( ) ) ;
2278- Assert . True ( statusJson . GetProperty ( "file_issues_data_current" ) . GetBoolean ( ) ) ;
2279- Assert . True ( statusJson . GetProperty ( "fold_ready" ) . GetBoolean ( ) ) ;
2278+ Assert . False ( statusJson . GetProperty ( "file_issues_data_current" ) . GetBoolean ( ) ) ;
2279+ Assert . False ( statusJson . GetProperty ( "fold_ready" ) . GetBoolean ( ) ) ;
22802280
22812281 using var verify = OpenNonPoolingConnection ( dbPath ) ;
22822282 verify . Open ( ) ;
@@ -5622,7 +5622,7 @@ public void Run_UpdateMode_WithFiles_DoesNotRemoveUnreadableExtensionlessScript(
56225622 Assert . Equal ( CommandExitCodes . Success , statusExitCode ) ;
56235623 Assert . False ( statusJson . GetProperty ( "graph_table_available" ) . GetBoolean ( ) ) ;
56245624 Assert . True ( statusJson . GetProperty ( "issues_table_available" ) . GetBoolean ( ) ) ;
5625- Assert . True ( statusJson . GetProperty ( "file_issues_data_current" ) . GetBoolean ( ) ) ;
5625+ Assert . False ( statusJson . GetProperty ( "file_issues_data_current" ) . GetBoolean ( ) ) ;
56265626 Assert . False ( statusJson . GetProperty ( "fold_ready" ) . GetBoolean ( ) ) ;
56275627 }
56285628 finally
@@ -5668,7 +5668,7 @@ public void Run_UpdateMode_WithFiles_DemotesReadinessForUnreadableKnownExtension
56685668 Assert . Equal ( CommandExitCodes . Success , statusExitCode ) ;
56695669 Assert . False ( statusJson . GetProperty ( "graph_table_available" ) . GetBoolean ( ) ) ;
56705670 Assert . True ( statusJson . GetProperty ( "issues_table_available" ) . GetBoolean ( ) ) ;
5671- Assert . True ( statusJson . GetProperty ( "file_issues_data_current" ) . GetBoolean ( ) ) ;
5671+ Assert . False ( statusJson . GetProperty ( "file_issues_data_current" ) . GetBoolean ( ) ) ;
56725672 Assert . False ( statusJson . GetProperty ( "fold_ready" ) . GetBoolean ( ) ) ;
56735673 }
56745674 finally
@@ -5712,7 +5712,7 @@ public void Run_UpdateMode_WithFiles_DemotesReadinessForUnreadableNewKnownExtens
57125712 Assert . Equal ( CommandExitCodes . Success , statusExitCode ) ;
57135713 Assert . False ( statusJson . GetProperty ( "graph_table_available" ) . GetBoolean ( ) ) ;
57145714 Assert . True ( statusJson . GetProperty ( "issues_table_available" ) . GetBoolean ( ) ) ;
5715- Assert . True ( statusJson . GetProperty ( "file_issues_data_current" ) . GetBoolean ( ) ) ;
5715+ Assert . False ( statusJson . GetProperty ( "file_issues_data_current" ) . GetBoolean ( ) ) ;
57165716 Assert . False ( statusJson . GetProperty ( "fold_ready" ) . GetBoolean ( ) ) ;
57175717 }
57185718 finally
0 commit comments