Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

Commit

Permalink
fix bug: issue #148 (#149)
Browse files Browse the repository at this point in the history
* fix bug: issue #148

* fix bug: issue #148
  • Loading branch information
GoZaddy authored Sep 14, 2023
1 parent 06ed21a commit f7f07db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public static boolean evaluate(
filter instanceof BursarExportFilterFeeFineOwner filterFeeFineOwner
) {
return UUID
.fromString(account.getAccount().getFeeFineOwner())
.fromString(account.getAccount().getOwnerId())
.equals(filterFeeFineOwner.getFeeFineOwner());
} else if (filter instanceof BursarExportFilterLocation filterLocation) {
Item item = account.getItem();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ void testFilterAccountByFeeFineOwner() {
filterFeeFineOwner.setFeeFineOwner(feeFineOwnerUUID);

Account account = new Account();
account.setFeeFineOwner("00000000-0000-4000-8000-000000000000");
account.setOwnerId("00000000-0000-4000-8000-000000000000");

AccountWithAncillaryData accountWithAncillaryData = AccountWithAncillaryData
.builder()
Expand Down

0 comments on commit f7f07db

Please sign in to comment.