jonpreamble commited on
Commit
8e5a321
·
1 Parent(s): 8105381

Amazingly, this test fails

Browse files
Files changed (1) hide show
  1. run_unit_tests.py +1 -0
run_unit_tests.py CHANGED
@@ -36,6 +36,7 @@ assert YES == decider_utils.special_case_is_action_lethal("I poison him with a l
36
  assert YES == decider_utils.special_case_is_action_lethal("I shoot him in the chest")
37
  assert YES == decider_utils.special_case_is_action_lethal("I shoot him right in the heart")
38
 
 
39
  assert NO == decider_utils.special_case_is_action_lethal("say wait! I'm sure we can negotiate a fair price for your protection")
40
  assert NO == decider_utils.special_case_is_action_lethal("say wait! I'm sure we can negotiate a fair price for your protection") # This version with only 1 space is frequently a false positive.
41
  assert NO == decider_utils.special_case_is_action_lethal("I fire a shot into the air!")
 
36
  assert YES == decider_utils.special_case_is_action_lethal("I shoot him in the chest")
37
  assert YES == decider_utils.special_case_is_action_lethal("I shoot him right in the heart")
38
 
39
+ assert NO == decider_utils.special_case_is_action_lethal("A")
40
  assert NO == decider_utils.special_case_is_action_lethal("say wait! I'm sure we can negotiate a fair price for your protection")
41
  assert NO == decider_utils.special_case_is_action_lethal("say wait! I'm sure we can negotiate a fair price for your protection") # This version with only 1 space is frequently a false positive.
42
  assert NO == decider_utils.special_case_is_action_lethal("I fire a shot into the air!")