소스 검색

Enabled B1_ch08 test case.

Sander Mathijs van Veen 14 년 전
부모
커밋
78daf989fb
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      tests/test_b1_ch08.py

+ 1 - 1
tests/test_b1_ch08.py

@@ -19,5 +19,5 @@ class TestB1Ch08(unittest.TestCase):
     def test_diagnostic_test_application(self):
         apply_expressions(Parser, [
             ('7p+2p', 1, (L(7) + 2) * 'p'),
-            #('7p-3p', 1, (L(7) - 3) * 'p'),
+            ('7p-3p', 1, (L(7) + -L(3)) * 'p'),
             ])