Skip to content

Commit

Permalink
Fix: Fix tests failing because of no predefined names
Browse files Browse the repository at this point in the history
  • Loading branch information
McModknower committed Jul 11, 2024
1 parent 010cfb2 commit cc69c9f
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.CsvSource;

import java.util.List;

import static org.junit.jupiter.api.Assertions.*;

class OwlRecordConverterTest {
Expand All @@ -24,6 +26,7 @@ void toPycramFormat(String iriName, String pycramName) {
.iriNamespaceShort("")
.naturalName("")
.description("")
.predefinedNames(List.of())
.build();
assertEquals(pycramName, OwlRecordConverter.toPycramFormat(record));
}
Expand Down

0 comments on commit cc69c9f

Please sign in to comment.