diff options
Diffstat (limited to 'test/src')
| -rw-r--r-- | test/src/emacs-module-tests.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/src/emacs-module-tests.el b/test/src/emacs-module-tests.el index 988a7a178c6..2aa85f0b247 100644 --- a/test/src/emacs-module-tests.el +++ b/test/src/emacs-module-tests.el | |||
| @@ -230,7 +230,7 @@ aren’t accessed." | |||
| 230 | (should (eq (mod-test-invalid-store) 123)) | 230 | (should (eq (mod-test-invalid-store) 123)) |
| 231 | (module--test-assertion (rx "Emacs value not found in " | 231 | (module--test-assertion (rx "Emacs value not found in " |
| 232 | (+ digit) " values of " | 232 | (+ digit) " values of " |
| 233 | (+ digit) " environments\n" eos) | 233 | (+ digit) " environments\n") |
| 234 | ;; Storing and reloading a local value causes undefined behavior, | 234 | ;; Storing and reloading a local value causes undefined behavior, |
| 235 | ;; which should be detected by the module assertions. | 235 | ;; which should be detected by the module assertions. |
| 236 | (mod-test-invalid-store) | 236 | (mod-test-invalid-store) |
| @@ -241,7 +241,7 @@ aren’t accessed." | |||
| 241 | during garbage collection." | 241 | during garbage collection." |
| 242 | (skip-unless (file-executable-p mod-test-emacs)) | 242 | (skip-unless (file-executable-p mod-test-emacs)) |
| 243 | (module--test-assertion | 243 | (module--test-assertion |
| 244 | (rx "Module function called during garbage collection\n" eos) | 244 | (rx "Module function called during garbage collection\n") |
| 245 | (mod-test-invalid-finalizer))) | 245 | (mod-test-invalid-finalizer))) |
| 246 | 246 | ||
| 247 | ;;; emacs-module-tests.el ends here | 247 | ;;; emacs-module-tests.el ends here |