diff options
author | martianh <martianh@noreply.codeberg.org> | 2022-02-12 16:51:00 +0100 |
---|---|---|
committer | martianh <martianh@noreply.codeberg.org> | 2022-02-12 16:51:00 +0100 |
commit | 834646570d2a4416aedc29f9d335656f611f2089 (patch) | |
tree | baf8b3f2dc718a66525d65afc3216a3ddd665e9c /test/mastodon-tl-tests.el | |
parent | 8b20cae30e1064c49a5c95789270d975ee96d3ff (diff) | |
parent | d23331f89d2cae54636dc87a49a237d8587f1766 (diff) |
Merge pull request 'Fix the timer test that was broken with the recent timer fix.' (#258) from h_d/mastodon.el:fix-timer-test into develop
Reviewed-on: https://codeberg.org/martianh/mastodon.el/pulls/258
Diffstat (limited to 'test/mastodon-tl-tests.el')
-rw-r--r-- | test/mastodon-tl-tests.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/mastodon-tl-tests.el b/test/mastodon-tl-tests.el index dd07416..a569c89 100644 --- a/test/mastodon-tl-tests.el +++ b/test/mastodon-tl-tests.el @@ -559,7 +559,7 @@ a string or a numeric." (mock (mastodon-tl--relative-time-details 'fake-timestamp) => (cons "xxx ago" soon-in-the-future)) (mock (cancel-timer 'initial-timer)) - (mock (run-at-time soon-in-the-future nil + (mock (run-at-time * nil #'mastodon-tl--update-timestamps-callback (current-buffer) nil) => 'new-timer) |