Skip to content

Commit

Permalink
fixes tests with negative hashcodes
Browse files Browse the repository at this point in the history
  • Loading branch information
lmajano committed Jan 14, 2025
1 parent f7ff781 commit 3739e95
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ public Key getUniqueName() {
uniqueName.append( "_" );

// Hash the properties
uniqueName.append( properties.hashCode() );
uniqueName.append( Math.abs( properties.hashCode() ) );

return Key.of( uniqueName.toString() );
}
Expand Down

0 comments on commit 3739e95

Please sign in to comment.