summaryrefslogtreecommitdiff
path: root/test/lisp/progmodes/python-tests.el
diff options
context:
space:
mode:
authorStefan Kangas <stefan@marxist.se>2020-10-02 18:02:51 +0200
committerStefan Kangas <stefan@marxist.se>2020-10-03 12:53:51 +0200
commitd6a2754348f57883036c0f35f0a880b7817e6bc1 (patch)
treeb3d3a8a10ebf0e56acff206d0e188f3b61651d7e /test/lisp/progmodes/python-tests.el
parentceae38b9338ea07b18b2d2efa07bcf304d40c23d (diff)
downloademacs-d6a2754348f57883036c0f35f0a880b7817e6bc1.tar.gz
emacs-d6a2754348f57883036c0f35f0a880b7817e6bc1.tar.bz2
emacs-d6a2754348f57883036c0f35f0a880b7817e6bc1.zip
; Fix more typos
Diffstat (limited to 'test/lisp/progmodes/python-tests.el')
-rw-r--r--test/lisp/progmodes/python-tests.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/lisp/progmodes/python-tests.el b/test/lisp/progmodes/python-tests.el
index 6b3e63653be..bc77443ff4f 100644
--- a/test/lisp/progmodes/python-tests.el
+++ b/test/lisp/progmodes/python-tests.el
@@ -339,7 +339,7 @@ def func(arg):
# I don't do much
return arg
# This comment is badly indented because the user forced so.
- # At this line python.el wont dedent, user is always right.
+ # At this line python.el won't dedent, user is always right.
comment_wins_over_ender = True
@@ -358,7 +358,7 @@ comment_wins_over_ender = True
;; The return keyword do make indentation lose a level...
(should (= (python-indent-calculate-indentation) 0))
;; ...but the current indentation was forced by the user.
- (python-tests-look-at "# At this line python.el wont dedent")
+ (python-tests-look-at "# At this line python.el won't dedent")
(should (eq (car (python-indent-context)) :after-comment))
(should (= (python-indent-calculate-indentation) 4))
;; Should behave the same for blank lines: potentially a comment.