diff --git a/Tests/Unit/Device/ReadSANSDRawTest.cpp b/Tests/Unit/Device/ReadSANSDRawTest.cpp index 8f5a6ce438d69d6916af57261c5752debbdf0b50..514e015016b62d4dcfc5eb38cd75bf9563bb1fe3 100644 --- a/Tests/Unit/Device/ReadSANSDRawTest.cpp +++ b/Tests/Unit/Device/ReadSANSDRawTest.cpp @@ -2,7 +2,6 @@ #include "Device/Data/OutputData.h" #include "BATesting.h" #include "Tests/GTestWrapper/google_test.h" -#include <cstdio> class ReadSANSDRawTest : public ::testing::Test { }; @@ -17,7 +16,5 @@ TEST_F(ReadSANSDRawTest, Read) return; EXPECT_EQ(data->rank(), 2); EXPECT_EQ(data->getAllocatedSize(), 16384); - for(int i=0; i<16384; ++i) - printf("%5i %5i\n", i, (int)(*data)[i]); - EXPECT_EQ((*data)[64*64-1], 3); + EXPECT_EQ((*data)[128*70+62], 443); }