Fix HTML export for retry options

This commit is contained in:
Fabrice Reix 2023-12-08 14:18:25 +01:00 committed by hurl-bot
parent 29453534bb
commit 0ec12b75c6
No known key found for this signature in database
GPG Key ID: 1283A2B4A0DCAF8D

View File

@ -256,7 +256,7 @@ impl HtmlFormatter {
match retry {
Retry::Finite(n) => self.fmt_number(n),
Retry::Infinite => self.fmt_number(-1),
_ => {}
Retry::None => self.fmt_number(0),
};
}