You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Assume I have this method in my Java library (tested with and without the generics on the Map):
public Map task_with_map(Map<String,Integer> data){
return data;
}
And I attempt to call it with:
*** Test Cases ***
Do Task With Map
&{myMap} = create dictionary a=10 b=12
Log ${myMap} INFO
${output} RL1.task with map ${myMap}
should be equal ${output} ${myMap}
The case fails because the Java library is receiving an empty map. Is this related to robotframework/JavalibCore#33? (I have imported the remote library as RL1)
The text was updated successfully, but these errors were encountered:
Assume I have this method in my Java library (tested with and without the generics on the Map):
And I attempt to call it with:
The case fails because the Java library is receiving an empty map. Is this related to robotframework/JavalibCore#33? (I have imported the remote library as RL1)
The text was updated successfully, but these errors were encountered: