1
0
mirror of https://github.com/ThrowTheSwitch/Unity.git synced 2026-01-23 00:15:58 +01:00

Update detail-stack implementation after #784

This commit is contained in:
ml-physec
2025-08-07 13:44:02 +02:00
parent bddb1366a2
commit 25e9af9edd
2 changed files with 6 additions and 2 deletions

View File

@@ -33,7 +33,7 @@ void test_BitExtractor(void)
{
const test_vector_t test_vectors[] = {
{__LINE__, 7, BIT_DIRECTION_UP, {1,1,1,0,0,0,0,0}},
{__LINE__, 7, BIT_DIRECTION_DOWN, {0,0,0,0,0,1,0,1}},
{__LINE__, 7, BIT_DIRECTION_DOWN, {0,0,0,0,0,1,0,1}}, /* intentionally wrong to demonstrate detail output */
{0}
};
const test_vector_t* tv;