Skip to content

Commit

Permalink
Merge pull request #3079 from otcathatsya/fix_ticket_903
Browse files Browse the repository at this point in the history
Update test failing due to removed scipy method
  • Loading branch information
jessica-mitchell authored Jan 26, 2024
2 parents c811d75 + a2051dc commit 9ce52bf
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions testsuite/pytests/sli2py_regressions/test_ticket_903.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@

import nest
import numpy as np
import pytest
import scipy.stats


Expand All @@ -46,4 +45,4 @@ def test_correct_rounding_distributions():
delays = nest.GetConnections().delay

assert set(delays) == {1, 2}
assert scipy.stats.binom_test(sum(np.array(delays) == 2.0), indegree) > significance
assert scipy.stats.binomtest(sum(np.array(delays) == 2.0), indegree).pvalue > significance

0 comments on commit 9ce52bf

Please sign in to comment.