Skip to content

Commit

Permalink
PIVOT-999: Fix BeanAdapterTest to compile under Java 8 (worked with J…
Browse files Browse the repository at this point in the history
…ava 10...)

git-svn-id: https://svn.apache.org/repos/asf/pivot/trunk@1865083 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
Roger Lee Whitcomb committed Aug 14, 2019
1 parent 46be62d commit 6d30e1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/test/org/apache/pivot/beans/test/BeanAdapterTest.java
Expand Up @@ -182,7 +182,7 @@ public void testSerializeString() {
public void testPutAll() {
Map<String, Object> sourceMap = new HashMap<>();
sourceMap.put("bd", BigDecimal.TEN);
sourceMap.put("bi", BigInteger.TWO);
sourceMap.put("bi", BigInteger.ONE);
sourceMap.put("string", "This is a test of the Emergency Broadcast System");

BeanAdapter obj = new BeanAdapter(srcTest);
Expand Down

0 comments on commit 6d30e1d

Please sign in to comment.