diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2020-03-10 07:55:31 +0100 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2020-03-10 07:55:31 +0100 |
| commit | c48a7d3a8ac1f448ca2ccd9714526dfff2eebaf9 (patch) | |
| tree | cec5584d5e24607ef3e9c1f9c38228689d3469e4 | |
| parent | eb77e80de01e658541d4fcc3b0b38783ce4e6a7e (diff) | |
Fixed typos in tolerance gis_tests.
| -rw-r--r-- | tests/gis_tests/distapp/tests.py | 4 | ||||
| -rw-r--r-- | tests/gis_tests/geoapp/tests.py | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/tests/gis_tests/distapp/tests.py b/tests/gis_tests/distapp/tests.py index 4e2c95ee18..3febb98b11 100644 --- a/tests/gis_tests/distapp/tests.py +++ b/tests/gis_tests/distapp/tests.py @@ -436,7 +436,7 @@ class DistanceFunctionsTests(FuncTestMixin, TestCase): @unittest.skipUnless( connection.vendor == 'oracle', - 'Oracle supports tolerance paremeter.', + 'Oracle supports tolerance parameter.', ) def test_distance_function_tolerance_escaping(self): qs = Interstate.objects.annotate( @@ -452,7 +452,7 @@ class DistanceFunctionsTests(FuncTestMixin, TestCase): @unittest.skipUnless( connection.vendor == 'oracle', - 'Oracle supports tolerance paremeter.', + 'Oracle supports tolerance parameter.', ) def test_distance_function_tolerance(self): # Tolerance is greater than distance. diff --git a/tests/gis_tests/geoapp/tests.py b/tests/gis_tests/geoapp/tests.py index 01e3889300..4d441dcb94 100644 --- a/tests/gis_tests/geoapp/tests.py +++ b/tests/gis_tests/geoapp/tests.py @@ -596,7 +596,7 @@ class GeoQuerySetTest(TestCase): @unittest.skipUnless( connection.vendor == 'oracle', - 'Oracle supports tolerance paremeter.', + 'Oracle supports tolerance parameter.', ) def test_unionagg_tolerance(self): City.objects.create( @@ -622,7 +622,7 @@ class GeoQuerySetTest(TestCase): @unittest.skipUnless( connection.vendor == 'oracle', - 'Oracle supports tolerance paremeter.', + 'Oracle supports tolerance parameter.', ) def test_unionagg_tolerance_escaping(self): tx = Country.objects.get(name='Texas').mpoly |
