From 380d2e118a570220a79c8adba148ff0cbbf99c78 Mon Sep 17 00:00:00 2001 From: liuq19 Date: Mon, 9 Sep 2024 11:22:24 +0800 Subject: [PATCH] fix: ftoa --- tests/jsonpath_test.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/jsonpath_test.cpp b/tests/jsonpath_test.cpp index db4ebea..6530c8b 100644 --- a/tests/jsonpath_test.cpp +++ b/tests/jsonpath_test.cpp @@ -98,7 +98,6 @@ TEST(JsonPath, IndexSelector) { TestOk(json, "$[0]", "0"); TestOk(json, "$[-7]", "0"); TestOk(json, "$[1]", "1.23"); - TestOk(json, "$[1]", "1.23"); TestOk(json, "$[2]", "4.0E56"); TestOk(json, "$[3]", "null"); TestOk(json, "$[4]", "true");