X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/5e4339fa861d8f6aadf5cd731e8c38dd569aa013..32d9767958eece65c3d6feb02419a3f003dc2f0a:/tests/test_raw_ip.cpp

diff --git a/tests/test_raw_ip.cpp b/tests/test_raw_ip.cpp
index a7b3e8a5..4c7ce121 100644
--- a/tests/test_raw_ip.cpp
+++ b/tests/test_raw_ip.cpp
@@ -28,7 +28,7 @@ constexpr size_t ITERATIONS = 1000;
 std::array<uint8_t, 68> genVector()
 {
     std::array<uint8_t, 68> res;
-    for (size_t i = 0; i < 68; ++i)
+    for (size_t i = 0; i < res.size(); ++i)
         res[i] = rand() % 256;
     res[0] = (res[0] & 0xF0) | 0x05; // Fix header length
     return res;
@@ -82,7 +82,7 @@ BOOST_AUTO_TEST_CASE(RandomTests)
     srand(time(NULL));
     for (size_t i = 0; i < ITERATIONS; ++i)
     {
-        RAW_PACKET_OLD p1;
+        RawPacketOld p1;
         STG::RawPacket p2;
         STG::RawPacket p3;