Skip to content

Commit 823f98d

Browse files
committed
update Java version
1 parent 5e6eaa2 commit 823f98d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/test/java/com/upokecenter/test/CBORObjectTest.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8535,7 +8535,7 @@ public static void AssertJSONInteger(
85358535
Assert.assertEquals(intval, cbor.AsInt32Value());
85368536
}
85378537

8538-
@Test(timeout = 2000)
8538+
@Test(timeout = 10000)
85398539
public void TestFromJsonStringLongSpecific1() {
85408540
JSONOptions jsonop = JSONOptions.Default;
85418541
String json = "{\"x\":-9.2574033594381E-7962\u002c\"1\":" +
@@ -8664,7 +8664,7 @@ public void TestFromJsonStringLongKindFull2() {
86648664
}
86658665
}
86668666

8667-
@Test(timeout = 2000)
8667+
@Test(timeout = 10000)
86688668
public void TestFromJsonStringLongKindFullBad() {
86698669
System.out.println("FullBad 1");
86708670
JSONOptions jsonop = new JSONOptions("numberconversion=full");
@@ -8701,7 +8701,7 @@ public void TestFromJsonStringLongKindFullBad() {
87018701
}
87028702
}
87038703

8704-
@Test(timeout = 2000)
8704+
@Test(timeout = 10000)
87058705
public void TestFromJsonStringLongKindsBad() {
87068706
JSONOptions jsonop;
87078707
String json = TestCommon.Repeat("7", 1000000) + "x";
@@ -8768,7 +8768,7 @@ public void TestFromJsonStringLongKindsBad() {
87688768
}
87698769
}
87708770

8771-
@Test(timeout = 2000)
8771+
@Test(timeout = 10000)
87728772
public void TestFromJsonStringLongKindIntOrFloatFromDouble() {
87738773
JSONOptions jsonop = new JSONOptions("numberconversion=intorfloatfromdouble");
87748774
String manysevens = TestCommon.Repeat("7", 1000000);
@@ -8792,7 +8792,7 @@ public void TestFromJsonStringLongKindIntOrFloatFromDouble() {
87928792
}
87938793
}
87948794

8795-
@Test(timeout = 2000)
8795+
@Test(timeout = 10000)
87968796
public void TestFromJsonStringLongKindIntOrFloat() {
87978797
JSONOptions jsonop = new JSONOptions("numberconversion=intorfloat");
87988798
String json = TestCommon.Repeat("7", 1000000);
@@ -8803,7 +8803,7 @@ public void TestFromJsonStringLongKindIntOrFloat() {
88038803
}
88048804
}
88058805

8806-
@Test(timeout = 2000)
8806+
@Test(timeout = 10000)
88078807
public void TestFromJsonStringLongKindIntOrFloat2() {
88088808
JSONOptions jsonop = new JSONOptions("numberconversion=intorfloat");
88098809
String json = "-" + TestCommon.Repeat("7", 1000000);

0 commit comments

Comments
 (0)