branch: externals/triples
commit ad6e3295409e4e325d06d00bd08863c28b1f11e2
Author: Andrew Hyatt <ahy...@gmail.com>
Commit: Andrew Hyatt <ahy...@gmail.com>

    Fix for ert tests broken by the last commit.
---
 triples-test.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/triples-test.el b/triples-test.el
index e3172fa42b..f7e1b8f456 100644
--- a/triples-test.el
+++ b/triples-test.el
@@ -156,8 +156,8 @@ easily debug into it.")
    (triples-set-type db "foo" 'named :name "My Name Is Fred Foo")
    (triples-set-type db "bar" 'named :name "My Name Is Betty Bar")
    (should (equal
-            '(("bar" named/name "My Name Is Betty Bar" nil)
-              ("foo" named/name "My Name Is Fred Foo" nil))
+            '(("bar" named/name "My Name Is Betty Bar" (:empty t))
+              ("foo" named/name "My Name Is Fred Foo" (:empty t)))
             (sort (triples-with-predicate db :named/name)
                   (lambda (a b)
                     (string< (car a) (car b))))))))

Reply via email to