aboutsummaryrefslogtreecommitdiffstats
path: root/test/automated/python-tests.el
diff options
context:
space:
mode:
authorGlenn Morris2013-07-09 00:35:26 -0700
committerGlenn Morris2013-07-09 00:35:26 -0700
commita87b74fe644d54cabc67d01e962a2bfcbaaa495a (patch)
treeb8898a2a6ca92a5385218bb78c79f364a4c8ff2d /test/automated/python-tests.el
parent08be5fba9c04365d954b724de1b99d95c552478b (diff)
downloademacs-a87b74fe644d54cabc67d01e962a2bfcbaaa495a.tar.gz
emacs-a87b74fe644d54cabc67d01e962a2bfcbaaa495a.zip
* test/automated/python-tests.el (python-indent-block-enders):
Make it actually test something.
Diffstat (limited to 'test/automated/python-tests.el')
-rw-r--r--test/automated/python-tests.el4
1 files changed, 2 insertions, 2 deletions
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