Fix tests with JavaOnlyMap

Summary: Need to force the double thing in more places.

Reviewed By: cpojer

Differential Revision: D14835792

fbshipit-source-id: fb7a5435675b322d5fbbe9858e08804e9abe65db
This commit is contained in:
Spencer Ahrens
2019-04-08 23:03:26 -07:00
committed by Facebook Github Bot
parent 742d02a172
commit 8ec13c306c
3 changed files with 14 additions and 14 deletions
@@ -156,7 +156,7 @@ public class JavaOnlyArray implements ReadableArray, WritableArray {
@Override
public void pushInt(int value) {
mBackingList.add(value);
mBackingList.add(new Double(value));
}
@Override