Skip to content

Commit

Permalink
Adjust test thresholds.
Browse files Browse the repository at this point in the history
  • Loading branch information
jgosmann committed Feb 22, 2018
1 parent 80efb37 commit a2f37fd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nengo_spa/modules/tests/test_thalamus.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,14 +124,14 @@ def input_func(t):
valueC = np.mean(data[550:600], axis=0) # should be [1, 0, 0]

assert valueA[0] < 0.2
assert valueA[1] > 0.75
assert valueA[1] > 0.7
assert valueA[2] < 0.2

assert valueB[0] < 0.2
assert valueB[1] < 0.2
assert valueB[2] > 0.75
assert valueB[2] > 0.7

assert valueC[0] > 0.75
assert valueC[0] > 0.7
assert valueC[1] < 0.2
assert valueC[2] < 0.2

Expand Down

0 comments on commit a2f37fd

Please sign in to comment.