diff options
| -rw-r--r-- | test/ChangeLog | 3 | ||||
| -rw-r--r-- | test/automated/python-tests.el | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/test/ChangeLog b/test/ChangeLog index eee013d1218..cd6b402ca23 100644 --- a/test/ChangeLog +++ b/test/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2013-07-09 Glenn Morris <rgm@gnu.org> | 1 | 2013-07-09 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * automated/python-tests.el (python-indent-block-enders): | ||
| 4 | Make it actually test something. | ||
| 5 | |||
| 3 | * automated/package-x-test.el: Require package-test when compiling. | 6 | * automated/package-x-test.el: Require package-test when compiling. |
| 4 | 7 | ||
| 5 | * automated/add-log-tests.el, automated/advice-tests.el: | 8 | * automated/add-log-tests.el, automated/advice-tests.el: |
diff --git a/test/automated/python-tests.el b/test/automated/python-tests.el index c115f69be63..1dffe9544fe 100644 --- a/test/automated/python-tests.el +++ b/test/automated/python-tests.el | |||
| @@ -464,10 +464,10 @@ Class foo(object): | |||
| 464 | " | 464 | " |
| 465 | (python-tests-look-at "3)") | 465 | (python-tests-look-at "3)") |
| 466 | (forward-line 1) | 466 | (forward-line 1) |
| 467 | (= (python-indent-calculate-indentation) 12) | 467 | (should (= (python-indent-calculate-indentation) 8)) |
| 468 | (python-tests-look-at "pass") | 468 | (python-tests-look-at "pass") |
| 469 | (forward-line 1) | 469 | (forward-line 1) |
| 470 | (= (python-indent-calculate-indentation) 8))) | 470 | (should (= (python-indent-calculate-indentation) 8)))) |
| 471 | 471 | ||
| 472 | 472 | ||
| 473 | ;;; Navigation | 473 | ;;; Navigation |