Skip to content
Snippets Groups Projects
Commit bca017d1 authored by Robert Goldmann's avatar Robert Goldmann
Browse files

fixed integration test

parent e8529d4d
No related branches found
No related tags found
No related merge requests found
......@@ -185,6 +185,9 @@ class TemplateImporterTest extends ImporterTestBase
Icon icon = new Icon("fas fa-icons");
icon = iconRepository.save(icon);
Icon icon2= new Icon("fas fa-icons");
icon2 = iconRepository.save(icon2);
final Template template = new Template();
template.setID(15);
template.setTemplateName("My awesome template");
......@@ -204,7 +207,7 @@ class TemplateImporterTest extends ImporterTestBase
template2.setIsExpenditure(true);
template2.setTags(List.of());
template2.setDescription("Lorem Ipsum");
template2.setIconReference(icon);
template2.setIconReference(icon2);
template2.setTags(List.of(new Tag("0815")));
TemplateGroup defaultTemplateGroup = new TemplateGroup("Default group", TemplateGroupType.DEFAULT);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment