You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Perform tests with different ordering of files in the src/test/resources/ontologies/literal directory (executed on Oracle Linux Server release 8.9 with XFS filesystem):
mv src/test/resources/ontologies/literal/* /tmp/
mv /tmp/test1.{jsonld,rdf,ttl} src/test/resources/ontologies/literal/
# check the order of files - the following command:
ls -f src/test/resources/ontologies/literal/
# should return:# . .. test1.jsonld test1.rdf test1.ttl
mvn test
mv src/test/resources/ontologies/literal/* /tmp/
mv /tmp/test1.{rdf,ttl,jsonld} src/test/resources/ontologies/literal/
# check the order of files - the following command:
ls -f src/test/resources/ontologies/literal/
# should return:# . .. test1.rdf test1.ttl test1.jsonld
mvn test
The text was updated successfully, but these errors were encountered:
The error described in #67 was not detected in the tests because the algorithm used in them is incorrect.
How to reproduce the error:
git clone https://github.com/edmcouncil/rdf-toolkit cd rdf-toolkit git reset --hard 2603921 mvn -Dmaven.test.skip=true clean package
The text was updated successfully, but these errors were encountered: