Skip to content

Commit

Permalink
updated conversion test
Browse files Browse the repository at this point in the history
  • Loading branch information
alkidbaci committed Nov 13, 2024
1 parent 12d4a88 commit 1485edd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_owlapy_conversions.py
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,8 @@ def test_data_properties_boolean(self):
self.assertEqual(p, c)

p = self.parser.parse_expression('∃ hasFifeExamplesOfAcenthrylenes.{true ⊔ false ⊔ "false"^^xsd:boolean}')
filler = OWLDataOneOf((OWLLiteral(True), OWLLiteral(False), OWLLiteral(False)))
filler = OWLDataOneOf((OWLLiteral(True, BooleanOWLDatatype), OWLLiteral(False, BooleanOWLDatatype),
OWLLiteral(False, BooleanOWLDatatype)))
c = OWLDataSomeValuesFrom(self.has_fife_examples, filler)
self.assertEqual(p, c)

Expand Down

0 comments on commit 1485edd

Please sign in to comment.