File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -240,7 +240,7 @@ def test_nothing_to_complete(self):
240240            from sqlite3.__main__ import main; main() 
241241        """ )
242242        input  =  b"zzzz\t ;\n .quit\n " 
243-         output  =  run_pty (script , input ,  env = { "NO_COLOR" :  "1" } )
243+         output  =  run_pty (script , input )
244244        for  keyword  in  KEYWORDS :
245245            self .assertNotRegex (output , rf"\b{ keyword }  .encode ("utf-8" ))
246246
@@ -251,7 +251,7 @@ def test_completion_order(self):
251251            from sqlite3.__main__ import main; main() 
252252        """ )
253253        input  =  b"S\t ;\n .quit\n " 
254-         output  =  run_pty (script , input ,  env = { "NO_COLOR" :  "1" } )
254+         output  =  run_pty (script , input )
255255        savepoint_idx  =  output .find (b"SAVEPOINT" )
256256        select_idx  =  output .find (b"SELECT" )
257257        set_idx  =  output .find (b"SET" )
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments