diff options
Diffstat (limited to 'Lib/test/test_xmlrpc.py')
-rw-r--r-- | Lib/test/test_xmlrpc.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_xmlrpc.py b/Lib/test/test_xmlrpc.py index 37347500a8..73d53ee30c 100644 --- a/Lib/test/test_xmlrpc.py +++ b/Lib/test/test_xmlrpc.py @@ -572,7 +572,7 @@ class CGIHandlerTestCase(unittest.TestCase): def test_cgi_get(self): with support.EnvironmentVarGuard() as env: - env.set('REQUEST_METHOD', 'GET') + env['REQUEST_METHOD'] = 'GET' # if the method is GET and no request_text is given, it runs handle_get # get sysout output tmp = sys.stdout @@ -613,7 +613,7 @@ class CGIHandlerTestCase(unittest.TestCase): sys.stdout = open(support.TESTFN, "w") with support.EnvironmentVarGuard() as env: - env.set('CONTENT_LENGTH', str(len(data))) + env['CONTENT_LENGTH'] = str(len(data)) self.cgi.handle_request() sys.stdin.close() |