From f41939f00556a218d73fbe6285e83736b43ffc57 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Sat, 28 Aug 2021 13:02:59 +0300 Subject: [PATCH] ci: fix deprecations.out (time is now > 2021/08/28 00:00:00) --- vlib/v/checker/tests/deprecations.out | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vlib/v/checker/tests/deprecations.out b/vlib/v/checker/tests/deprecations.out index 5a7ba26b7b..6c1e8f8ae2 100644 --- a/vlib/v/checker/tests/deprecations.out +++ b/vlib/v/checker/tests/deprecations.out @@ -12,7 +12,7 @@ vlib/v/checker/tests/deprecations.vv:67:4: notice: method `Abc.future` will be d | ~~~~~~~~ 68 | a.past() 69 | a.simply_deprecated() -vlib/v/checker/tests/deprecations.vv:61:2: error: function `past` has been deprecated since 2021-03-01, it will be an error after 2021-08-28; custom message 5 +vlib/v/checker/tests/deprecations.vv:61:2: error: function `past` has been deprecated since 2021-03-01; custom message 5 59 | fn main() { 60 | future() 61 | past() @@ -40,7 +40,7 @@ vlib/v/checker/tests/deprecations.vv:64:2: error: function `ancient` has been de | ~~~~~~~~~ 65 | // 66 | a := Abc{} -vlib/v/checker/tests/deprecations.vv:68:4: error: method `Abc.past` has been deprecated since 2021-03-01, it will be an error after 2021-08-28; custom message 2 +vlib/v/checker/tests/deprecations.vv:68:4: error: method `Abc.past` has been deprecated since 2021-03-01; custom message 2 66 | a := Abc{} 67 | a.future() 68 | a.past()