Fix 302 test for python3.1
diff --git a/python3/httplib2test.py b/python3/httplib2test.py
index 8cd6809..7860143 100755
--- a/python3/httplib2test.py
+++ b/python3/httplib2test.py
@@ -428,7 +428,7 @@
  

     def testGet302ViaHttps(self):

         # Google always redirects to http://google.com

-        (response, content) = self.http.request("https://google.com", "GET")

+        (response, content) = self.http.request("https://www.google.com", "GET")

         self.assertEqual(200, response.status)

         self.assertEqual(302, response.previous.status)