Skip to content

Commit

Permalink
Code: Fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
GoldenGnu committed Oct 27, 2024
1 parent b21783f commit d322745
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public void testAssetIndustryJob() {
industryJob.setStationID(options.getLocationTypeEveApi());
industryJob.setCompletedDate(new Date(date.getTime() + 1L));
List<MyAsset> assets = DataConverter.assetIndustryJob(Collections.singletonList(industryJob), true, true);
if (options.getIndustryJobStatusRaw() == IndustryJobStatus.ARCHIVED) {
if (industryJob.isDone()) {
assertTrue(assets.isEmpty());
continue;
}
Expand Down

0 comments on commit d322745

Please sign in to comment.