Skip to content

Commit a703439

Browse files
committed
update Java version
1 parent e86f693 commit a703439

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2323,7 +2323,7 @@ public void TestEncodeFloat64() {
23232323
try {
23242324
ms = new java.io.ByteArrayOutputStream();
23252325

2326-
CBORObject.write(dbl, ms, options);
2326+
CBORObject.Write(dbl, ms, options);
23272327
bytes = ms.toByteArray();
23282328
Assert.assertEquals(9, bytes.length);
23292329
}
@@ -2336,7 +2336,7 @@ public void TestEncodeFloat64() {
23362336
try {
23372337
ms = new java.io.ByteArrayOutputStream();
23382338

2339-
CBORObject.write(cbor, ms, options);
2339+
CBORObject.Write(cbor, ms, options);
23402340
bytes = ms.toByteArray();
23412341
Assert.assertEquals(9, bytes.length);
23422342
}
@@ -2368,7 +2368,7 @@ public void TestEncodeFloat64() {
23682368
try {
23692369
ms = new java.io.ByteArrayOutputStream();
23702370

2371-
CBORObject.write(cbor2, ms, options);
2371+
CBORObject.Write(cbor2, ms, options);
23722372
bytes = ms.toByteArray();
23732373
Assert.assertEquals(10, bytes.length);
23742374
}
@@ -2400,7 +2400,7 @@ public void TestEncodeFloat64() {
24002400
try {
24012401
ms = new java.io.ByteArrayOutputStream();
24022402

2403-
CBORObject.write(cbor2, ms, options);
2403+
CBORObject.Write(cbor2, ms, options);
24042404
bytes = ms.toByteArray();
24052405
Assert.assertEquals(10, bytes.length);
24062406
}

0 commit comments

Comments
 (0)