Skip to content

Commit 07297e7

Browse files
committed
Fix TU
1 parent baac50b commit 07297e7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/lib/time_machine/logical_history/conflation_test.rb

+3-3
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def build_object(
3333
locha_id: 1,
3434
objtype: 'n',
3535
id: id,
36-
geom: '',
36+
geom: geom,
3737
geos: RGeo::GeoJSON.decode(JSON.parse(geom)),
3838
geom_distance: 0,
3939
deleted: false,
@@ -407,10 +407,10 @@ def test_conflate_merge_remeaning
407407
sig { void }
408408
def test_conflate_merge_deleted_created
409409
before = [
410-
build_object(id: 1, geom: '{"type":"Point","coordinates":[[0,0]]}', tags: { 'amenity' => 'a' }),
410+
build_object(id: 1, geom: '{"type":"Point","coordinates":[0,0]}', tags: { 'amenity' => 'a' }),
411411
]
412412
after = [
413-
build_object(id: 1, geom: '{"type":"Point","coordinates":[[0,0]]}', tags: { 'amenity' => 'b' }),
413+
build_object(id: 1, geom: '{"type":"Point","coordinates":[0,0]}', tags: { 'amenity' => 'b' }),
414414
]
415415

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

0 commit comments

Comments
 (0)