Skip to content

Commit

Permalink
Fix fieldparsertest
Browse files Browse the repository at this point in the history
Must've been a typo, maybe intentional to verify that the asserts trigger.
  • Loading branch information
Vogtinator committed Oct 19, 2022
1 parent 6dfd0a7 commit 5ae4b8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/tests/fieldparsertest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@ int main()
assert(nestedChild.isValid());
assert(nestedChild.sizeOfData() == 1);
assert(nestedChild.sizeWithHeader() == 3);
assert(nestedChild.data()[0] != 0x42);
assert(nestedChild.data()[0] == 0x42);
}

0 comments on commit 5ae4b8b

Please sign in to comment.