diff --git a/reports/with_toml-test_latest.md b/reports/with_toml-test_latest.md index 89ba5bd..74f0b05 100644 --- a/reports/with_toml-test_latest.md +++ b/reports/with_toml-test_latest.md @@ -81,7 +81,7 @@ Literally `.loads('v1 = "null" v2 = "None"')` How the package dumps a python dictionary with a heterogenous array. -Literally `.dumps({"v": [1, 1.2, True, "string", [1, 2], {"a": 1, "b": 2}]})` +Literally `.dumps({"v": [1, 1.2, True, "string"]})` | |Dumped value or error| @@ -97,7 +97,7 @@ Literally `.dumps({"v": [1, 1.2, True, "string", [1, 2], {"a": 1, "b": How the package loads a toml string with a heterogenous array. -Literally `.loads('v = [1, 1.2, True, "string", [1, 2], {"a": 1, "b": 2}]')` +Literally `.loads('v = [1, 1.2, True, "string"]')` | |Loaded as| diff --git a/reports/with_toml-test_v1.0.0.md b/reports/with_toml-test_v1.0.0.md index 5869620..2223e6b 100644 --- a/reports/with_toml-test_v1.0.0.md +++ b/reports/with_toml-test_v1.0.0.md @@ -81,7 +81,7 @@ Literally `.loads('v1 = "null" v2 = "None"')` How the package dumps a python dictionary with a heterogenous array. -Literally `.dumps({"v": [1, 1.2, True, "string", [1, 2], {"a": 1, "b": 2}]})` +Literally `.dumps({"v": [1, 1.2, True, "string"]})` | |Dumped value or error| @@ -97,7 +97,7 @@ Literally `.dumps({"v": [1, 1.2, True, "string", [1, 2], {"a": 1, "b": How the package loads a toml string with a heterogenous array. -Literally `.loads('v = [1, 1.2, True, "string", [1, 2], {"a": 1, "b": 2}]')` +Literally `.loads('v = [1, 1.2, True, "string"]')` | |Loaded as| diff --git a/reports/with_toml-test_v1.1.0.md b/reports/with_toml-test_v1.1.0.md index c213b03..36db276 100644 --- a/reports/with_toml-test_v1.1.0.md +++ b/reports/with_toml-test_v1.1.0.md @@ -81,7 +81,7 @@ Literally `.loads('v1 = "null" v2 = "None"')` How the package dumps a python dictionary with a heterogenous array. -Literally `.dumps({"v": [1, 1.2, True, "string", [1, 2], {"a": 1, "b": 2}]})` +Literally `.dumps({"v": [1, 1.2, True, "string"]})` | |Dumped value or error| @@ -97,7 +97,7 @@ Literally `.dumps({"v": [1, 1.2, True, "string", [1, 2], {"a": 1, "b": How the package loads a toml string with a heterogenous array. -Literally `.loads('v = [1, 1.2, True, "string", [1, 2], {"a": 1, "b": 2}]')` +Literally `.loads('v = [1, 1.2, True, "string"]')` | |Loaded as| diff --git a/reports/with_toml-test_v1.2.0.md b/reports/with_toml-test_v1.2.0.md index 7e1b4e7..1303c21 100644 --- a/reports/with_toml-test_v1.2.0.md +++ b/reports/with_toml-test_v1.2.0.md @@ -81,7 +81,7 @@ Literally `.loads('v1 = "null" v2 = "None"')` How the package dumps a python dictionary with a heterogenous array. -Literally `.dumps({"v": [1, 1.2, True, "string", [1, 2], {"a": 1, "b": 2}]})` +Literally `.dumps({"v": [1, 1.2, True, "string"]})` | |Dumped value or error| @@ -97,7 +97,7 @@ Literally `.dumps({"v": [1, 1.2, True, "string", [1, 2], {"a": 1, "b": How the package loads a toml string with a heterogenous array. -Literally `.loads('v = [1, 1.2, True, "string", [1, 2], {"a": 1, "b": 2}]')` +Literally `.loads('v = [1, 1.2, True, "string"]')` | |Loaded as| diff --git a/toml_bench/sets.py b/toml_bench/sets.py index d49b7e8..ce91618 100644 --- a/toml_bench/sets.py +++ b/toml_bench/sets.py @@ -108,7 +108,7 @@ class BenchSetLoadNoneLike(BenchSetTable): class BenchSetDumpsHeteroArray(BenchSetTable): """How the package dumps a python dictionary with a heterogenous array. - Literally `.dumps({"v": [1, 1.2, True, "string", [1, 2], {"a": 1, "b": 2}]})` + Literally `.dumps({"v": [1, 1.2, True, "string"]})` """ title = "Dumping a heterogenous array" @@ -120,7 +120,7 @@ class BenchSetDumpsHeteroArray(BenchSetTable): class BenchSetLoadsHeteroArray(BenchSetTable): """How the package loads a toml string with a heterogenous array. - Literally `.loads('v = [1, 1.2, True, "string", [1, 2], {"a": 1, "b": 2}]')` + Literally `.loads('v = [1, 1.2, True, "string"]')` """ title = "Loading a heterogenous array"