aboutsummaryrefslogtreecommitdiff
path: root/tests/test-pearl-sync-wrappers.el
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test-pearl-sync-wrappers.el')
-rw-r--r--tests/test-pearl-sync-wrappers.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test-pearl-sync-wrappers.el b/tests/test-pearl-sync-wrappers.el
index a5c9c70..cb4ac96 100644
--- a/tests/test-pearl-sync-wrappers.el
+++ b/tests/test-pearl-sync-wrappers.el
@@ -43,11 +43,11 @@
'((data (team (states (nodes . (((id . "s1") (name . "Todo")))))) ))
(should (= 1 (length (pearl-get-states "team-1"))))))
-(ert-deftest test-pearl-create-issue-sync-returns-issue ()
+(ert-deftest test-pearl--create-issue-sync-returns-issue ()
"The sync create wrapper returns the created issue node."
(testutil-linear-with-response
'((data (issueCreate (success . t) (issue (id . "i1") (identifier . "ENG-1") (title . "T")))))
- (should (string-equal "ENG-1" (cdr (assoc 'identifier (pearl-create-issue "T" "" "team")))))))
+ (should (string-equal "ENG-1" (cdr (assoc 'identifier (pearl--create-issue "T" "" "team")))))))
(ert-deftest test-pearl-sync-wrapper-times-out-without-callback ()
"A sync wrapper returns nil instead of hanging when no callback fires."