From 0c33656a19b9c30913e10382d74fa34f041f25b5 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Fri, 12 Mar 2021 20:36:19 +0200 Subject: [PATCH] ci: fix failing option_print_errors_test.v --- vlib/builtin/option.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/builtin/option.v b/vlib/builtin/option.v index 96f29f1a8b..8662d6d515 100644 --- a/vlib/builtin/option.v +++ b/vlib/builtin/option.v @@ -96,7 +96,7 @@ pub fn (o Option2) str() string { if o.state == 1 { return 'Option{ none }' } - return 'Option{ err: "$o.err" }' + return 'Option{ error: "$o.err" }' } // error returns an optional containing the error given in `message`.