Skip to content

Commit

Permalink
Update asttype tests
Browse files Browse the repository at this point in the history
  • Loading branch information
stephanzwicknagl committed Jun 8, 2024
1 parent 83f2af2 commit d182700
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions backend/test/test_analyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def test_edge_statement_analyzed_correctly(app_context):
program = transformer.sort_program(program)
filtered = transformer.get_filtered()
will_work = transformer.will_work()
assert len(filtered) == 1, "Edge Statement should be filtered out."
assert len(filtered) == 0, "Edge Statement should not be filtered out."
assert will_work == True, "Program with EdgeTerm should work."


Expand All @@ -166,7 +166,7 @@ def test_heuristic_statement_analyzed_correctly(app_context):
filtered = transformer.get_filtered()
will_work = transformer.will_work()
assert len(
filtered) == 1, "Heuristic Statement should not be filtered out."
filtered) == 0, "Heuristic Statement should not be filtered out."
assert will_work == True, "Program with HeuristicTerm should work."


Expand Down Expand Up @@ -211,7 +211,7 @@ def test_theory_definition_statement_analyzed_correctly(app_context):
will_work = transformer.will_work()
assert len(
filtered
) == 16, "Theory Definition Statement should not be filtered out."
) == 0, "Theory Definition Statement should not be filtered out."
assert will_work == True, "Program with TheoryDefinitionTerm should work."


Expand Down

0 comments on commit d182700

Please sign in to comment.