[Jython-checkins] jython: [Trivial] Correct typo FIME -> FIXME

jeff.allen jython-checkins at python.org
Sat Jan 25 23:56:22 CET 2014


http://hg.python.org/jython/rev/a394359c0582
changeset:   7177:a394359c0582
user:        Jeff Allen <ja.py at farowl.co.uk>
date:        Wed Jan 15 08:42:37 2014 +0000
summary:
  [Trivial] Correct typo FIME -> FIXME

files:
  Lib/test/test_httplib.py     |   2 +-
  Lib/test/test_httpservers.py |  10 +++++-----
  2 files changed, 6 insertions(+), 6 deletions(-)


diff --git a/Lib/test/test_httplib.py b/Lib/test/test_httplib.py
--- a/Lib/test/test_httplib.py
+++ b/Lib/test/test_httplib.py
@@ -201,7 +201,7 @@
         if resp.read() != "":
             self.fail("Did not expect response from HEAD request")
 
-    @unittest.skipIf(test_support.is_jython, "FIME: not working on Jython")
+    @unittest.skipIf(test_support.is_jython, "FIXME: not working on Jython")
     def test_send_file(self):
         expected = 'GET /foo HTTP/1.1\r\nHost: example.com\r\n' \
                    'Accept-Encoding: identity\r\nContent-Length:'
diff --git a/Lib/test/test_httpservers.py b/Lib/test/test_httpservers.py
--- a/Lib/test/test_httpservers.py
+++ b/Lib/test/test_httpservers.py
@@ -461,13 +461,13 @@
                                  msg='path = %r\nGot:    %r\nWanted: %r' %
                                  (path, actual, expected))
 
-    @unittest.skipIf(test_support.is_jython, "FIME: not working on Jython")
+    @unittest.skipIf(test_support.is_jython, "FIXME: not working on Jython")
     def test_headers_and_content(self):
         res = self.request('/cgi-bin/file1.py')
         self.assertEqual(('Hello World\n', 'text/html', 200),
             (res.read(), res.getheader('Content-type'), res.status))
 
-    @unittest.skipIf(test_support.is_jython, "FIME: not working on Jython")
+    @unittest.skipIf(test_support.is_jython, "FIXME: not working on Jython")
     def test_post(self):
         params = urllib.urlencode({'spam' : 1, 'eggs' : 'python', 'bacon' : 123456})
         headers = {'Content-type' : 'application/x-www-form-urlencoded'}
@@ -480,7 +480,7 @@
         res.read()
         self.assertEqual(res.status, 404)
 
-    @unittest.skipIf(test_support.is_jython, "FIME: not working on Jython")
+    @unittest.skipIf(test_support.is_jython, "FIXME: not working on Jython")
     def test_authorization(self):
         headers = {'Authorization' : 'Basic %s' %
                    base64.b64encode('username:pass')}
@@ -488,14 +488,14 @@
         self.assertEqual(('Hello World\n', 'text/html', 200),
                 (res.read(), res.getheader('Content-type'), res.status))
 
-    @unittest.skipIf(test_support.is_jython, "FIME: not working on Jython")
+    @unittest.skipIf(test_support.is_jython, "FIXME: not working on Jython")
     def test_no_leading_slash(self):
         # http://bugs.python.org/issue2254
         res = self.request('cgi-bin/file1.py')
         self.assertEqual(('Hello World\n', 'text/html', 200),
              (res.read(), res.getheader('Content-type'), res.status))
 
-    @unittest.skipIf(test_support.is_jython, "FIME: not working on Jython")
+    @unittest.skipIf(test_support.is_jython, "FIXME: not working on Jython")
     def test_os_environ_is_not_altered(self):
         signature = "Test CGI Server"
         os.environ['SERVER_SOFTWARE'] = signature

-- 
Repository URL: http://hg.python.org/jython


More information about the Jython-checkins mailing list