Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
frodrigo committed Sep 28, 2024
1 parent 01c6d15 commit fdc9cfa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/logical_history/conflation_test.rb
Original file line number Diff line number Diff line change
@@ -409,10 +409,10 @@ def test_conflate_merge_remeaning
sig { void }
def test_conflate_merge_deleted_created
before = [
build_object(id: 1, geom: '{"type":"Point","coordinates":[[0,0]]}', tags: { 'amenity' => 'a' }),
build_object(id: 1, geom: '{"type":"Point","coordinates":[0,0]}', tags: { 'amenity' => 'a' }),
]
after = [
build_object(id: 1, geom: '{"type":"Point","coordinates":[[0,0]]}', tags: { 'amenity' => 'b' }),
build_object(id: 1, geom: '{"type":"Point","coordinates":[0,0]}', tags: { 'amenity' => 'b' }),
]

conflations = Conflation.conflate_with_simplification(before, after, @@srid, @@demi_distance)

0 comments on commit fdc9cfa

Please sign in to comment.