Skip to content

Commit

Permalink
LPD-24142 Fix compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
ealonso authored and brianchandotcom committed May 5, 2024
1 parent 595c499 commit 4da7307
Showing 1 changed file with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,9 @@ public void testAddAssetListEntryByExternalReferenceCode()
_addAssetListEntry(externalReferenceCode);

AssetListEntry assetListEntry =
_assetListEntryLocalService.fetchAssetListEntry(
externalReferenceCode, _group.getGroupId());
_assetListEntryLocalService.
fetchAssetListEntryByExternalReferenceCode(
externalReferenceCode, _group.getGroupId());

Assert.assertNotNull(assetListEntry);

Expand Down Expand Up @@ -89,9 +90,10 @@ public void testDeleteAssetListEntryByExternalReferenceCode()
assetListEntry.getGroupId());

Assert.assertNull(
_assetListEntryLocalService.fetchAssetListEntry(
assetListEntry.getExternalReferenceCode(),
assetListEntry.getGroupId()));
_assetListEntryLocalService.
fetchAssetListEntryByExternalReferenceCode(
assetListEntry.getExternalReferenceCode(),
assetListEntry.getGroupId()));
}

private AssetListEntry _addAssetListEntry(String externalReferenceCode)
Expand Down

0 comments on commit 4da7307

Please sign in to comment.