forgot to shift check

This commit is contained in:
keldu 2021-12-24 22:54:35 +01:00
parent 506f5728dd
commit bb4470075e
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ GIN_TEST("Primitive Encoding"){
GIN_EXPECT(!error.failed(), error.message());
GIN_EXPECT(temp_buffer.readCompositeLength() == (sizeof(value)+8), "Bad Size: " + std::to_string(temp_buffer.readCompositeLength()));
GIN_EXPECT(temp_buffer[0] == 5 && temp_buffer[1] == 0 && temp_buffer[2] == 0 && temp_buffer[3] == 0, "Wrong encoded values");
GIN_EXPECT(temp_buffer[8] == 5 && temp_buffer[9] == 0 && temp_buffer[10] == 0 && temp_buffer[11] == 0, "Wrong encoded values");
}
GIN_TEST("List Encoding"){