[java-intentions] HexToDec3.java: update test to produce the same result on JDK 17 and JDK 21

Behavior of Float.toString() was slightly changed since JDK 19, see JDK-6664028

GitOrigin-RevId: b61938174483e34627fa369624e5993cb58cbd2f
This commit is contained in:
Tagir Valeev
2023-08-04 13:23:54 +02:00
committed by intellij-monorepo-bot
parent 093e60cd34
commit 70dc1b43b7
2 changed files with 2 additions and 2 deletions

View File

@@ -1,3 +1,3 @@
class C {
float f = <caret>0xab_cd.P2_2f;
float f = <caret>0xab_c5.P2_2f;
}

View File

@@ -1,3 +1,3 @@
class C {
float f = 1.84469684E11f;
float f = 1.8443613E11f;
}