Skip to content

Commit

Permalink
Oops, test value should be 65535 to be maximum unsigned 16-bit int
Browse files Browse the repository at this point in the history
  • Loading branch information
LegalizeAdulthood committed Dec 29, 2024
1 parent e91224a commit 4d29b09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_resume.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ void TestResume::SetUp()
Test::SetUp();
m_data.datum1 = 123;
m_data.datum2 = 64;
m_data.datum3 = 65536U;
m_data.datum3 = 65535U;
alloc_resume(sizeof(ResumeData) + 20, 3);
}

Expand Down

0 comments on commit 4d29b09

Please sign in to comment.