Skip to content

Commit

Permalink
fixing test checks
Browse files Browse the repository at this point in the history
  • Loading branch information
wiheto committed Jul 6, 2019
1 parent 6d0df34 commit eeed540
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/classes/test_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def test_workflow_temporalnetwork():
func_params={'networkmeasure': 'temporal_degree_centrality'})
twf.run()
fig, ax = twf.make_workflow_figure()
if Dth != twf.output_['degree_th-percent']:
if not all(Dth == twf.output_['degree_th-percent']):
raise AssertionError()
if Dmag != twf.output_['degree_th-magnitude']:
if not all(Dmag == twf.output_['degree_th-magnitude']):
raise AssertionError()

0 comments on commit eeed540

Please sign in to comment.