From 4ccfe380e06774be02f1c52dd43508245cc98a01 Mon Sep 17 00:00:00 2001 From: Dmitry <98899785+mdqst@users.noreply.github.com> Date: Mon, 27 Jan 2025 12:02:03 +0300 Subject: [PATCH] Fix the CLI output of formal verification runs (#5445) --- certora/run.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/certora/run.js b/certora/run.js index a5ad9eece..91f4a6aec 100755 --- a/certora/run.js +++ b/certora/run.js @@ -160,7 +160,7 @@ function writeEntry(spec, contract, success, url) { formatRow( spec, contract, - success ? ':x:' : ':heavy_check_mark:', + success ? ':heavy_check_mark:' : ':x:', url ? `[link](${url?.replace('/output/', '/jobStatus/')})` : 'error', url ? `[link](${url})` : 'error', ),