diff options
| author | Wilfred Hughes <me@wilfred.me.uk> | 2017-12-10 12:12:21 +0000 |
|---|---|---|
| committer | Wilfred Hughes <me@wilfred.me.uk> | 2017-12-10 12:12:21 +0000 |
| commit | 15baad13e6cd09d7681565fe9e1f18b7dff8528d (patch) | |
| tree | 015f1c96909982a88cf75581735480030e002e77 | |
| parent | 5ee51be1858f6824c98bc04ca580a94e0c504b6e (diff) | |
helpful-update now returns nil, so don't use 'should
| -rw-r--r-- | test/unit-test.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/unit-test.el b/test/unit-test.el index e1c3911..759c608 100644 --- a/test/unit-test.el +++ b/test/unit-test.el @@ -65,7 +65,8 @@ ;; test-foo, so remove all properties. (setplist #'test-foo-no-properties nil) - (should (helpful-function #'test-foo-no-properties))) + ;; This shouldn't throw any errors. + (helpful-function #'test-foo-no-properties)) (ert-deftest helpful--split-first-line () ;; Don't modify a single line string. |
