Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
smoeding committed Mar 6, 2024
1 parent 2dc3035 commit d4b04e9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions test/font-lock-test.el
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
;;; 10-font-lock-test.el --- Unit Test Suite -*- lexical-binding: t; -*-
;;; font-lock-test.el --- Unit Test Suite -*- lexical-binding: t; -*-

;; Copyright (c) 2024 Stefan Möding

;; Author: Stefan Möding
;; Created: <2024-03-02 13:05:03 stm>
;; Updated: <2024-03-06 15:35:04 stm>
;; Updated: <2024-03-06 15:40:14 stm>

;; This file is NOT part of GNU Emacs.

Expand Down Expand Up @@ -52,7 +52,7 @@ bar"
(should (eq (puppet-test-face-at 1) 'puppet-comment-face))
(should (eq (puppet-test-face-at 3) 'puppet-comment-face))
(should (eq (puppet-test-face-at 7) 'puppet-comment-face))
(should (eq (puppet-test-face-at 8) 'puppet-comment-face))
(should-not (puppet-test-face-at 8))
(should-not (puppet-test-face-at 9))))

(ert-deftest puppet/fontify-c-style-comment ()
Expand All @@ -68,4 +68,4 @@ class */ bar"
(provide 'puppet-mode-test)

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; 10-font-lock-test.el ends here
;;; font-lock-test.el ends here
6 changes: 3 additions & 3 deletions test/mode-setup-test.el
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
;;; 00-mode-setup-test.el --- Unit Test Suite -*- lexical-binding: t; -*-
;;; mode-setup-test.el --- Unit Test Suite -*- lexical-binding: t; -*-

;; Copyright (c) 2024 Stefan Möding

;; Author: Stefan Möding
;; Created: <2024-03-02 13:05:03 stm>
;; Updated: <2024-03-06 13:51:59 stm>
;; Updated: <2024-03-06 15:40:21 stm>

;; This file is NOT part of GNU Emacs.

Expand Down Expand Up @@ -51,4 +51,4 @@
(provide 'puppet-mode-test)

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; 00-mode-setup-test.el ends here
;;; mode-setup-test.el ends here

0 comments on commit d4b04e9

Please sign in to comment.