This commit is contained in:
Felipe Pena 2025-08-16 08:28:36 -03:00
parent dd89989de7
commit b1cbc4c852

View file

@ -1,13 +1,13 @@
vlib/v/checker/tests/map_repeated_float_key_err.vv:10:3: error: duplicate key "1.e-06" in map literal
8 | 0.000001: 'small-1'
9 | 0.00001: 'small-2',
10 | 1.e-06: 'small-3',
9 | 0.00001: 'small-2'
10 | 1.e-06: 'small-3'
| ~~~~~~
11 | 0.00001: 'small-4'
12 | }
vlib/v/checker/tests/map_repeated_float_key_err.vv:11:3: error: duplicate key "0.00001" in map literal
9 | 0.00001: 'small-2',
10 | 1.e-06: 'small-3',
9 | 0.00001: 'small-2'
10 | 1.e-06: 'small-3'
11 | 0.00001: 'small-4'
| ~~~~~~~
12 | }