Small tests fixes

This commit is contained in:
Joel Falcou 2025-05-16 16:08:36 +02:00
parent f3bbc6933f
commit 0794c818c9

View file

@ -140,9 +140,9 @@ TTS_CASE("Constructor from Initializer list")
TTS_EQUAL(b9.rows(), 5ULL); TTS_EQUAL(b9.rows(), 5ULL);
TTS_EQUAL(b9.cols(), 1ULL); TTS_EQUAL(b9.cols(), 1ULL);
int i = 0.01; double i = 0.01;
for(std::size_t r=0;r<b9.rows();++r) { for(std::size_t r=0;r<b9.rows();++r) {
TTS_EQUAL(b9(r,1), i); TTS_EQUAL(b9(r,0), i);
i *= 10; i *= 10;
} }