mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 05:31:20 +00:00 
			
		
		
		
	Activate two more test cases in test_httpservers.
This commit is contained in:
		
							parent
							
								
									d995e1150c
								
							
						
					
					
						commit
						b740f6a0c7
					
				
					 1 changed files with 3 additions and 3 deletions
				
			
		|  | @ -277,7 +277,7 @@ def test_invalid_requests(self): | |||
| print | ||||
| 
 | ||||
| form = cgi.FieldStorage() | ||||
| print "%%s, %%s, %%s" % (form.getfirst("spam"), form.getfirst("eggs"),\ | ||||
| print "%%s, %%s, %%s" %% (form.getfirst("spam"), form.getfirst("eggs"),\ | ||||
|               form.getfirst("bacon")) | ||||
| """ | ||||
| 
 | ||||
|  | @ -341,8 +341,8 @@ def test_main(verbose=None): | |||
|     try: | ||||
|         cwd = os.getcwd() | ||||
|         test_support.run_unittest(BaseHTTPServerTestCase, | ||||
|                                   #SimpleHTTPServerTestCase, | ||||
|                                   #CGIHTTPServerTestCase | ||||
|                                   SimpleHTTPServerTestCase, | ||||
|                                   CGIHTTPServerTestCase | ||||
|                                   ) | ||||
|     finally: | ||||
|         os.chdir(cwd) | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Georg Brandl
						Georg Brandl