Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/ide/src/hover/tests.rs')
| -rw-r--r-- | crates/ide/src/hover/tests.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/ide/src/hover/tests.rs b/crates/ide/src/hover/tests.rs index 07f224da66..c95a0e4005 100644 --- a/crates/ide/src/hover/tests.rs +++ b/crates/ide/src/hover/tests.rs @@ -3634,7 +3634,7 @@ const FOO$0: f32 = 1f32; ``` ```rust - const FOO: f32 = 1 + const FOO: f32 = 1.0 ``` --- @@ -3656,7 +3656,7 @@ const FOO$0: f64 = 1.0f64; ``` ```rust - const FOO: f64 = 1 + const FOO: f64 = 1.0 ``` --- |