Skip to content

Commit 893f0c7

Browse files
committed
One error corrected in test_procedural_api
1 parent b7433b4 commit 893f0c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/system/scenarios/test_procedural_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def ticket195(sim):
2121
#prj = sim.Projection(pre, post, sim.FromListConnector([(0, 0, 0.01, 0.1)]))
2222
post.record(['spikes', 'v'])
2323
sim.run(100.0)
24-
assert_array_almost_equal(post.get_data().segments[0].spiketrains[0], numpy.array([13.4]) * pq.ms, 0.5)
24+
assert_array_almost_equal(post.get_data().segments[0].spiketrains[0], numpy.array([13.4]) * pq.ms, decimal=1)
2525
sim.end()
2626

2727
if __name__ == '__main__':

0 commit comments

Comments
 (0)