From b087105ce6e9fd0123d2a510438c0093e3f2de1e Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Fri, 15 Apr 2022 21:16:28 +0300 Subject: [PATCH] ci: fix fmt_test.v --- vlib/v/fmt/tests/float_literals_input.vv | 2 +- vlib/v/fmt/tests/types_input.vv | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/vlib/v/fmt/tests/float_literals_input.vv b/vlib/v/fmt/tests/float_literals_input.vv index e1f2d51813..ec535d08d3 100644 --- a/vlib/v/fmt/tests/float_literals_input.vv +++ b/vlib/v/fmt/tests/float_literals_input.vv @@ -1,4 +1,4 @@ fn main() { - a := 1. + a := 1.0 println(a) } diff --git a/vlib/v/fmt/tests/types_input.vv b/vlib/v/fmt/tests/types_input.vv index 6a5f9472e5..ac01a4adfd 100644 --- a/vlib/v/fmt/tests/types_input.vv +++ b/vlib/v/fmt/tests/types_input.vv @@ -4,9 +4,8 @@ type FooBar= Foo | Bar pub type PublicBar = Foo | Bar | FooBar -type Uint = u16 | u64 - | u32 - | byte // This should stay on the same line +type Uint = u8 |u16 | u64 + | u32 // This should stay on the same line type Float = f32 |