Skip to content

Commit

Permalink
Fixed bugs in test suite leading to Travis failures in certain enviro…
Browse files Browse the repository at this point in the history
…nments
  • Loading branch information
Andrew Hearin committed Mar 12, 2018
1 parent df4dc4d commit fe21a9f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def test_brute_force_interior_points():
num_tests = 50

nwin = 11
nhalfwin = nwin/2
nhalfwin = int(nwin/2)

for i in range(num_tests):
seed = fixed_seed + i
Expand Down Expand Up @@ -193,7 +193,7 @@ def test_brute_force_left_endpoints():
num_tests = 50

nwin = 11
nhalfwin = nwin/2
nhalfwin = int(nwin/2)

for i in range(num_tests):
seed = fixed_seed + i
Expand Down Expand Up @@ -228,7 +228,7 @@ def test_brute_force_right_points():
num_tests = 50

nwin = 11
nhalfwin = nwin/2
nhalfwin = int(nwin/2)

for i in range(num_tests):
seed = fixed_seed + i
Expand Down

0 comments on commit fe21a9f

Please sign in to comment.