Skip to content

Commit 4ccfe38

Browse files
authored
Fix the CLI output of formal verification runs (#5445)
1 parent 8c1b0ca commit 4ccfe38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

certora/run.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ function writeEntry(spec, contract, success, url) {
160160
formatRow(
161161
spec,
162162
contract,
163-
success ? ':x:' : ':heavy_check_mark:',
163+
success ? ':heavy_check_mark:' : ':x:',
164164
url ? `[link](${url?.replace('/output/', '/jobStatus/')})` : 'error',
165165
url ? `[link](${url})` : 'error',
166166
),

0 commit comments

Comments
 (0)