Skip to content

Commit

Permalink
fixed csv test
Browse files Browse the repository at this point in the history
Signed-off-by: Kharude, Sachin <sachin.kharude@here.com>
  • Loading branch information
Kharude, Sachin authored and omanges committed Sep 10, 2020
1 parent e0d2726 commit 5ad47df
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/space/test_space_objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,6 @@ def test_space_add_features_from_files_without_altitude(empty_space, tmp_path):
space.add_features_csv(
fp_csv, lon_col="longitude", lat_col="latitude", id_col="policyID"
)
breakpoint()
feature = space.get_feature(feature_id="333743")
assert feature["type"] == "Feature"

Expand Down Expand Up @@ -273,8 +272,8 @@ def test_space_add_features_from_files_with_altitude(space_object):
fp_csv = Path(__file__).parents[1] / "data" / "test_altitude.csv"
space_object.add_features_csv(
fp_csv,
lon_col="longitude",
lat_col="latitude",
lon_col="longitude",
id_col="policyID",
alt_col="altitude",
)
Expand Down

0 comments on commit 5ad47df

Please sign in to comment.