diff options
Diffstat (limited to 'test/automated/python-tests.el')
-rw-r--r-- | test/automated/python-tests.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/automated/python-tests.el b/test/automated/python-tests.el index 40505cc7953..1dffe9544fe 100644 --- a/test/automated/python-tests.el +++ b/test/automated/python-tests.el @@ -21,6 +21,7 @@ ;;; Code: +(require 'ert) (require 'python) (defmacro python-tests-with-temp-buffer (contents &rest body) @@ -463,10 +464,10 @@ Class foo(object): " (python-tests-look-at "3)") (forward-line 1) - (= (python-indent-calculate-indentation) 12) + (should (= (python-indent-calculate-indentation) 8)) (python-tests-look-at "pass") (forward-line 1) - (= (python-indent-calculate-indentation) 8))) + (should (= (python-indent-calculate-indentation) 8)))) ;;; Navigation |