Skip to content

Commit

Permalink
Fix test failure
Browse files Browse the repository at this point in the history
  • Loading branch information
pontusmelke committed Jul 9, 2018
1 parent 7656376 commit 49e03da
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ else if ( container instanceof VirtualRelationshipValue )
}
else if ( container instanceof MapValue )
{
return ((MapValue) container).containsKey( key ) ? TRUE : FALSE;
return ((MapValue) container).get( key ) != NO_VALUE ? TRUE : FALSE;
}
else
{
Expand Down

0 comments on commit 49e03da

Please sign in to comment.