Skip to content

Commit

Permalink
Removed console output
Browse files Browse the repository at this point in the history
  • Loading branch information
OwenR-York committed Dec 19, 2024
1 parent 20d3cd1 commit f58b965
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,6 @@ public void modelLanguageTagValidator() throws Exception {
@Test
public void getAllContentsNamesWithoutPrefixNoPreferredLanguageTags() throws Exception {
setupModel(null);
System.out.println(model.getLanguagePreference().toString());
Set<String> names = new HashSet<>();
for (RDFModelElement o : model.allContents()) {
names.addAll((Collection<String>) pGetter.invoke(o, "name", context));
Expand All @@ -121,7 +120,6 @@ public void getAllContentsNamesWithoutPrefixNoPreferredLanguageTags() throws Exc
@Test
public void getNamesWithoutPrefixNoPreferredLanguageTag() throws Exception {
setupModel(null);
System.out.println(model.getLanguagePreference().toString());
RDFResource res = (RDFResource) model.getElementById(SPIDERMAN_URI);
Set<String> names = new HashSet<>((Collection<String>) pGetter.invoke(res, "name", context));
assertEquals("With no language preference and no tag, all values return", SPIDERMAN_NAMES, names);
Expand Down

0 comments on commit f58b965

Please sign in to comment.