Changes between Initial Version and Version 1 of Ticket #31569


Ignore:
Timestamp:
May 11, 2020, 1:12:09 PM (4 years ago)
Author:
Mariusz Felisiak
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #31569

    • Property Cc pope1ni Sergey Fedoseev added
    • Property Owner Mariusz Felisiak removed
    • Property Status assignednew
    • Property Version 3.0master
  • Ticket #31569 – Description

    initial v1  
     1Two tests fail with GEOS 3.8.1:
     2{{{
     3======================================================================
     4FAIL: test_diff_intersection_union (gis_tests.geoapp.test_functions.GISFunctionsTests)
     5----------------------------------------------------------------------
     6Traceback (most recent call last):
     7  File "/usr/lib/python3.6/unittest/case.py", line 59, in testPartExecutor
     8    yield
     9  File "/usr/lib/python3.6/unittest/case.py", line 605, in run
     10    testMethod()
     11  File "/repo/django/django/test/testcases.py", line 1215, in skip_wrapper
     12    return test_func(*args, **kwargs)
     13  File "/repo/django/tests/gis_tests/geoapp/test_functions.py", line 569, in test_diff_intersection_union
     14    self.assertEqual(c.mpoly.intersection(geom), c.intersection)
     15  File "/usr/lib/python3.6/unittest/case.py", line 829, in assertEqual
     16    assertion_func(first, second, msg=msg)
     17  File "/usr/lib/python3.6/unittest/case.py", line 822, in _baseAssertEqual
     18    raise self.failureException(msg)
     19AssertionError: <Point object at 0x7f614c615230> != <GeometryCollection object at 0x7f614c61e098>
     20
     21======================================================================
     22FAIL: test_intersection (gis_tests.geoapp.test_functions.GISFunctionsTests)
     23----------------------------------------------------------------------
     24Traceback (most recent call last):
     25  File "/usr/lib/python3.6/unittest/case.py", line 59, in testPartExecutor
     26    yield
     27  File "/usr/lib/python3.6/unittest/case.py", line 605, in run
     28    testMethod()
     29  File "/repo/django/django/test/testcases.py", line 1215, in skip_wrapper
     30    return test_func(*args, **kwargs)
     31  File "/repo/django/tests/gis_tests/geoapp/test_functions.py", line 299, in test_intersection
     32    self.assertEqual(c.inter, expected)
     33  File "/usr/lib/python3.6/unittest/case.py", line 829, in assertEqual
     34    assertion_func(first, second, msg=msg)
     35  File "/usr/lib/python3.6/unittest/case.py", line 822, in _baseAssertEqual
     36    raise self.failureException(msg)
     37AssertionError: <GeometryCollection object at 0x7f614c61ea28> != <Point object at 0x7f614c61e560>
     38}}}
Back to Top