Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
a2l007 committed May 23, 2024
1 parent fcee74d commit a51324d
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,12 +111,13 @@ public boolean equals(Object o)
}
LocalCatalog that = (LocalCatalog) o;
return warehousePath.equals(that.warehousePath)
&& Objects.equals(catalogProperties, that.catalogProperties);
&& Objects.equals(catalogProperties, that.catalogProperties)
&& Objects.equals(caseSensitive, that.caseSensitive);
}

@Override
public int hashCode()
{
return Objects.hash(warehousePath, catalogProperties);
return Objects.hash(warehousePath, catalogProperties, caseSensitive);
}
}

0 comments on commit a51324d

Please sign in to comment.