One more small piece of determinism

This commit is contained in:
Pavel Krajcevski 2014-03-12 03:31:53 -04:00
parent 7ecb217d20
commit c5d0a803e9

View file

@ -57,7 +57,7 @@ static const float kEpsilon = 1e-6f;
TEST(VectorBase, Constructors) {
FasTC::VectorBase<float, 3> v3f;
v3f[0] = 1.1f; v3f[1] = 1.2f;
v3f[0] = 1.1f; v3f[1] = 1.2f; v3f[2] = 1.3;
FasTC::VectorBase<double, 1> v1d;
v1d[0] = 1.1;
FasTC::VectorBase<int, 7> v7i;