Add missing semicolon (fixes #1857)

This commit is contained in:
Benoit Blanchon
2023-01-17 08:59:45 +01:00
parent 7885155634
commit 175e5b3062

View File

@ -165,7 +165,7 @@ TEST_CASE("copyArray()") {
char json[32] = "";
int source[][3] = {{1, 2, 3}, {4, 5, 6}};
CAPTURE(SIZE)
CAPTURE(SIZE);
bool ok = copyArray(source, array);
CAPTURE(doc.memoryUsage());