Skip to content
This repository was archived by the owner on Jan 23, 2018. It is now read-only.

Commit

Permalink
Fix error in elunit.el: 'equal' called with only one arg
Browse files Browse the repository at this point in the history
  • Loading branch information
purcell committed Sep 10, 2008
1 parent 0384b4f commit e563966
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/elunit.el
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@
(goto-char (point-min))
(unless (search-forward target nil t)
(fail "%s expected to be found in buffer %s" target buffer))
(unless (equal (face (get-text-property (point) 'background)))
(unless (equal face (get-text-property (point) 'background))
(fail "%s expected to be displayed with face %s" target face))))

(defun assert-overlay (pos)
Expand Down

0 comments on commit e563966

Please sign in to comment.