Skip to content

Commit

Permalink
fix: Fix failing pipeline test [DHIS2-18870]
Browse files Browse the repository at this point in the history
  • Loading branch information
muilpp committed Jan 20, 2025
1 parent aa707d9 commit 07da7ad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,8 @@ void testGetAuditsByParams() {

params =
new TrackedEntityAuditQueryParams()
.setAuditTypes(List.of(AuditOperationType.CREATE, AuditOperationType.DELETE));
.setAuditTypes(List.of(AuditOperationType.CREATE, AuditOperationType.DELETE))
.setUsers(List.of("userA", "userB", "userC", "userD"));

assertContainsOnly(List.of(auditA, auditD), store.getTrackedEntityAudit(params));

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,9 @@
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.transaction.annotation.Transactional;

@Transactional
class DeduplicationServiceMergeIntegrationTest extends PostgresIntegrationTestBase {
@Autowired private DeduplicationService deduplicationService;

Expand Down

0 comments on commit 07da7ad

Please sign in to comment.