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 |