We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 788cbce commit a57d0dfCopy full SHA for a57d0df
unittest/python/test_std_vector.py
@@ -102,7 +102,7 @@ def checkZero(v):
102
# Test slicing
103
l6 = eigenpy.StdVec_VectorXd()
104
for _ in range(4):
105
- l6.append(np.random.randn(3))
+ l6.append(rng.random(3))
106
checkAllValues(l6[:1], l6.tolist()[:1])
107
checkAllValues(l6[1:], l6.tolist()[1:])
108
checkAllValues(l6[:-1], l6.tolist()[:-1])
0 commit comments