Skip to content

Commit

Permalink
Merge pull request #11 from FINTLabs/FFS-172-history-service
Browse files Browse the repository at this point in the history
enable EventRepositoryTest and change migration to use "" on value co…
  • Loading branch information
Battlestad authored Aug 25, 2023
2 parents 8a2fa4a + e48e072 commit 3a395c6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/resources/db/migration/V1__init.sql
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ create table error
create table error_args
(
error_id int8 not null,
value text,
"value" text,
map_key varchar(255) not null,
primary key (error_id, map_key)
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import no.fintlabs.model.EventType;
import no.fintlabs.model.InstanceFlowHeadersEmbeddable;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.orm.jpa.DataJpaTest;
Expand All @@ -23,7 +22,6 @@

@DataJpaTest(properties = "spring.jpa.hibernate.ddl-auto=none")
@DirtiesContext
@Disabled
public class EventRepositoryTest {

@Autowired
Expand Down

0 comments on commit 3a395c6

Please sign in to comment.