Skip to content

Commit

Permalink
fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
iGN5117 committed Jul 26, 2023
1 parent 4997c28 commit 2baba30
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions python/tests/maps/test_sedonapydeck.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,13 @@ def testPolygonMap(self):
data=buildings_gdf,
auto_highlight=True,
get_fill_color="[85, 183, 177, 255]",
opacity=1.0,
opacity=0.4,
stroked=False,
extruded=True,
get_elevation='confidence * 10',
pickable=True,
get_line_color="[85, 183, 177, 255]"
get_line_color="[85, 183, 177, 255]",
get_line_width=3
)
p_map = pdk.Deck(layers=[polygon_layer])
sedona_pydeck_map = SedonaPyDeck.create_geometry_map(df=buildings_df, elevation_col='confidence * 10')
Expand Down

0 comments on commit 2baba30

Please sign in to comment.