fix one more wrong float

This commit is contained in:
Folkert 2023-09-14 00:21:52 +02:00
parent 5bcfd91f3a
commit a34965e05e
No known key found for this signature in database
GPG key ID: 1F17F6FFD112B97C

View file

@ -134,7 +134,7 @@ fn dict_nonempty_get() {
Err _ -> def
empty
|> Dict.insert 42 1.23
|> Dict.insert 42 1.23f64
|> Dict.get 42
|> withDefault 0
"#
@ -152,7 +152,7 @@ fn dict_nonempty_get() {
Err _ -> def
Dict.empty {}
|> Dict.insert 42 1.23
|> Dict.insert 42 1.23f64
|> Dict.get 43
|> withDefault 0
"#