Skip to content

Commit

Permalink
Merge pull request #492 from jphickey/fix-491-utassert-line-length
Browse files Browse the repository at this point in the history
Fix #491, increase UT assert buffer sizes
  • Loading branch information
astrogeco authored Jun 17, 2020
2 parents 4efd29f + 2d79f8e commit e05cb2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ut_assert/src/utassert.c
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ bool UtAssert(bool Expression, const char *Description, const char *File, uint32
bool UtAssertEx(bool Expression, UtAssert_CaseType_t CaseType, const char *File, uint32 Line, const char *MessageFormat, ...)
{
va_list va;
char FinalMessage[128];
char FinalMessage[256];

++UT_SegmentCounters.TotalTestCases;

Expand Down

0 comments on commit e05cb2c

Please sign in to comment.