diff --git a/test_httpbin.py b/test_httpbin.py index 0284c85..1924179 100755 --- a/test_httpbin.py +++ b/test_httpbin.py @@ -1,9 +1,9 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +import base64 +import unittest import httpbin -import unittest -import base64 def _string_to_base64(string): @@ -54,7 +54,5 @@ class HttpbinTestCase(unittest.TestCase): self.assertNotIn('Access-Control-Allow-Headers', response.headers) # FIXME should we add any extra headers? - - if __name__ == '__main__': unittest.main()