Skip to content

Commit

Permalink
Update test_post_processing.py
Browse files Browse the repository at this point in the history
fix the hotfix...
  • Loading branch information
Dobson committed Jun 20, 2024
1 parent e365184 commit 62c3c15
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/test_post_processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,14 +91,14 @@ def generate_data_dict():
'manhole_area' : [0.5,0.5]
})
outfalls = gpd.GeoDataFrame({'id' : ['node2_outfall'],
'chamber_floor_elevation' : [0],
'surface_elevation' : [0],
'x' : [0],
'y' : [0]})
'chamber_floor_elevation' : [-4],
'surface_elevation' : [-4],
'x' : [-49],
'y' : [-49]})
conduits = gpd.GeoDataFrame({'id' : ['node1-node2','node2-node2_outfall'],
'u' : ['node1','node2'],
'v' : ['node2','node2_outfall'],
'length' : [1,1],
'length' : [1,(50**2+50**2)**0.5],
'roughness' : [0.01,0.01],
'shape_swmm' : ['CIRCULAR','CIRCULAR'],
'diameter' : [1,15],
Expand Down

0 comments on commit 62c3c15

Please sign in to comment.