web/lib/django/contrib/gis/gdal/tests/test_envelope.py
changeset 29 cc9b7e14412b
parent 0 0d40e90630ef
--- a/web/lib/django/contrib/gis/gdal/tests/test_envelope.py	Wed May 19 17:43:59 2010 +0200
+++ b/web/lib/django/contrib/gis/gdal/tests/test_envelope.py	Tue May 25 02:43:45 2010 +0200
@@ -55,7 +55,7 @@
         self.assertEqual((0, 0, 5, 6), self.e) 
         self.e.expand_to_include(-1, -1) 
         self.assertEqual((-1, -1, 5, 6), self.e) 
- 		 
+  
     def test05_expand_to_include_pt_2_tuple(self): 
         "Testing Envelope expand_to_include -- point as a single 2-tuple parameter." 
         self.e.expand_to_include((10, 10)) 
@@ -67,17 +67,17 @@
         "Testing Envelope expand_to_include -- extent as 4 parameters." 
         self.e.expand_to_include(-1, 1, 3, 7) 
         self.assertEqual((-1, 0, 5, 7), self.e) 
- 		 
+  
     def test06_expand_to_include_extent_4_tuple(self): 
         "Testing Envelope expand_to_include -- extent as a single 4-tuple parameter." 
         self.e.expand_to_include((-1, 1, 3, 7)) 
         self.assertEqual((-1, 0, 5, 7), self.e) 
- 		 
+  
     def test07_expand_to_include_envelope(self): 
         "Testing Envelope expand_to_include with Envelope as parameter." 
         self.e.expand_to_include(Envelope(-1, 1, 3, 7)) 
         self.assertEqual((-1, 0, 5, 7), self.e) 
- 		 
+  
     def test08_expand_to_include_point(self): 
         "Testing Envelope expand_to_include with Point as parameter." 
         self.e.expand_to_include(TestPoint(-1, 1))