Swift: Add a . to a test message to match the logging API change in this PR.

This commit is contained in:
Alexandre Boulgakov
2023-05-19 14:46:12 +01:00
parent 1e9b849e93
commit 110b766770

View File

@@ -8,5 +8,6 @@ static codeql::Logger& logger() {
}
int main() {
CODEQL_ASSERT(false, "Format the int {} and string {} if this assertion fails", 1234, "myString");
CODEQL_ASSERT(false, "Format the int {} and string {} if this assertion fails.", 1234,
"myString");
}