ci: fix deprecated_module.out file too

pull/13294/head
Delyan Angelov 2022-01-27 13:16:25 +02:00
parent ebad7301f9
commit f8f7bc8ead
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED
1 changed files with 4 additions and 4 deletions

View File

@ -1,8 +1,8 @@
vlib/v/checker/tests/modules/deprecated_module/main.v:2:1: notice: module `deprecated_module.www.ttt` will be deprecated after 2999-01-01, and will become an error after 2999-06-30; use xxx.yyy
1 | import deprecated_module.bbb.ccc
2 | import deprecated_module.www.ttt
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3 | import deprecated_module.xxx.yyy
1 | import bbb.ccc
2 | import www.ttt
| ~~~~~~~~~~~~~~
3 | import xxx.yyy
4 |
vlib/v/checker/tests/modules/deprecated_module/main.v:12:11: error: undefined ident: `deprecated_module.www.ttt.non_existing`
10 | dump(ttt.f())