diff options
Diffstat (limited to 'tests/valid/arrays.toml')
| -rw-r--r-- | tests/valid/arrays.toml | 3 | 
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/valid/arrays.toml b/tests/valid/arrays.toml index 6d6440d..c435f57 100644 --- a/tests/valid/arrays.toml +++ b/tests/valid/arrays.toml @@ -1,9 +1,8 @@  ints = [1, 2, 3] -floats = [1.0, 2.0, 3.0] +floats = [1.1, 2.1, 3.1]  strings = ["a", "b", "c"]  dates = [    1987-07-05T17:45:00Z,    1979-05-27T07:32:00Z,    2006-06-01T11:00:00Z,  ] -  |