changeset 27:53783e475df0

fix test typo Ignore-this: 46835e21b774915428f3b0accbaf42ab
author drewp@bigasterisk.com
date Fri, 24 May 2019 00:08:14 +0000
parents 95c57a5cb18e
children cf30e7c42697
files rdfdb/rdflibpatch.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/rdfdb/rdflibpatch.py	Fri May 24 00:06:34 2019 +0000
+++ b/rdfdb/rdflibpatch.py	Fri May 24 00:08:14 2019 +0000
@@ -176,7 +176,7 @@
     def testAddsToNewContext(self):
         g = ConjunctiveGraph()
         patchQuads(g, [], [stmt1])
-        self.assertTrue(len(g), 1)
+        self.assertEqual(len(g), 1)
         quads = list(g.quads((None,None,None)))
         self.assertEqual(quads, [(A, B, C, Graph(identifier=CTX1))])