diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-02-18 20:24:53 +0100 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-02-18 20:26:02 +0100 |
commit | 8aba9654efaca16403886ee5f3689350b6ff5709 (patch) | |
tree | 315da987e6d1a57d0731f9df1c54d2d211964f58 /test/ert-helper.el | |
parent | 9b579c7e981ce37a5d6059de4e249d5d54452d6e (diff) |
ert-helper: reorder load directives
Diffstat (limited to 'test/ert-helper.el')
-rw-r--r-- | test/ert-helper.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/ert-helper.el b/test/ert-helper.el index 140425b..230baf2 100644 --- a/test/ert-helper.el +++ b/test/ert-helper.el @@ -1,18 +1,18 @@ +(load-file "lisp/mastodon-http.el") +(load-file "lisp/mastodon-iso.el") +(load-file "lisp/mastodon-toot.el") (load-file "lisp/mastodon.el") (load-file "lisp/mastodon-search.el") (load-file "lisp/mastodon-async.el") -(load-file "lisp/mastodon-http.el") -(load-file "lisp/mastodon-auth.el") (load-file "lisp/mastodon-client.el") +(load-file "lisp/mastodon-auth.el") (load-file "lisp/mastodon-discover.el") (load-file "lisp/mastodon-inspect.el") (load-file "lisp/mastodon-media.el") (load-file "lisp/mastodon-notifications.el") -(load-file "lisp/mastodon.el") (load-file "lisp/mastodon-profile.el") (load-file "lisp/mastodon-search.el") (load-file "lisp/mastodon-tl.el") -(load-file "lisp/mastodon-toot.el") ;; load tests in bulk to avoid using deprecated `cask exec' (let ((tests (cl-remove-if-not (lambda (x) |