Skip to content

Commit

Permalink
fix error in test
Browse files Browse the repository at this point in the history
  • Loading branch information
maxeeem committed Apr 28, 2024
1 parent d5d40b7 commit 33bb375
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Tests/test_NAL/test_NAL7.py
Original file line number Diff line number Diff line change
Expand Up @@ -412,12 +412,11 @@ def test_induction_on_tense_0_1(self):
10
'''
rules, task, belief, concept, task_link, term_link, result1, result2 = rule_map_two_premises(
tasks_derived = process_two_premises(
'<John --> (/,open,_,door_101)>. :|: ',
'<John --> (/,enter,_,room_101)>. :|: ',
'John.'
100
)
tasks_derived = [rule(task, belief, task_link, term_link) for rule in rules]
self.assertTrue(
output_contains(tasks_derived, '<<$1 --> (/,enter,_,room_101)> =\> (&/,<$1 --> (/,open,_,door_101)>,+6)>. :!6: %1.00;0.45%')
)
Expand Down

0 comments on commit 33bb375

Please sign in to comment.