Skip to content

Commit

Permalink
update Java version
Browse files Browse the repository at this point in the history
  • Loading branch information
peteroupc committed Jan 31, 2025
1 parent 2f411df commit 08de2d9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/test/java/com/upokecenter/test/CBORObjectTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -3443,8 +3443,8 @@ public void TestFromObject_TypeMapper() {
@Test(timeout = 10001)
public void TestFromObject_Dictionary() {
Map<String, String> dict = new HashMap<String, String>();
dict.["TestKey"] = "TestValue";
dict.["TestKey2"] = "TestValue2";
dict.put("TestKey","TestValue");
dict.put("TestKey2","TestValue2");

CBORObject c = CBORObject.FromObject(dict);
CheckKeyValue(c, "TestKey", "TestValue");
Expand Down Expand Up @@ -3579,7 +3579,7 @@ public void TestFromObject_PODOptions() {
"propB",
"propC");
HashMap<String, Object> aodict = new HashMap<String, Object>();
aodict.["PropValue"] = new PODClass();
aodict.put("PropValue",new PODClass());

CBORObjectTest.CheckPODInDictPropertyNames(
CBORObject.FromObject(aodict, valueCcTF),
Expand Down

0 comments on commit 08de2d9

Please sign in to comment.