]> git.eshelyaron.com Git - sweep.git/commitdiff
; Adapt tests following last change
authorEshel Yaron <me@eshelyaron.com>
Sun, 15 Oct 2023 11:11:13 +0000 (13:11 +0200)
committerEshel Yaron <me@eshelyaron.com>
Sun, 15 Oct 2023 11:11:13 +0000 (13:11 +0200)
sweeprolog-tests.el

index b65c6031d869338489b738d64d0c6c29d7542935..06c8638eab171d7d566fd16ff9f8058139164104 100644 (file)
@@ -479,8 +479,8 @@ baz(Baz) :- fooba-!-"
   (let ((cap (sweeprolog-completion-at-point)))
     (should (= 64 (nth 0 cap)))
     (should (= 69 (nth 1 cap)))
-    (should (equal '(("foobar(Baz)" compound "term_position" 0 11 0 6 ((compound "-" 7 10))))
-                   (nth 2 cap)))))
+    (should (equal '("foobar(Baz)")
+                   (all-completions "" (nth 2 cap))))))
 
 (sweeprolog-deftest cap-autoloaded-predicate ()
   "Completion at point for remote predicates."
@@ -491,8 +491,8 @@ baz(Baz) :- lists:memberc-!-"
   (let ((cap (sweeprolog-completion-at-point)))
     (should (= 70 (nth 0 cap)))
     (should (= 77 (nth 1 cap)))
-    (should (equal '(("memberchk(Elem, List)" compound "term_position" 0 21 0 9 ((compound "-" 10 14) (compound "-" 16 20))))
-                   (nth 2 cap)))))
+    (should (equal '("memberchk(Elem, List)")
+                   (all-completions "" (nth 2 cap))))))
 
 (sweeprolog-deftest cap-compound ()
   "Completion at point for compound terms."