You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
deftestLenInMultipleContexts(self):
oldLen=len(self.graph)
self.addStuffInMultipleContexts()
# addStuffInMultipleContexts is adding the same triple to# three different contexts. So it's only + 1self.assertEquals(len(self.graph), oldLen+1)
graph=Graph(self.graph.store, self.c1)
self.assertEquals(len(graph), oldLen+1)
The assertion "self.assertEquals(len(self.graph), oldLen + 1)" fails.
The text was updated successfully, but these errors were encountered:
Test that reveals the bug.
The assertion "self.assertEquals(len(self.graph), oldLen + 1)" fails.
The text was updated successfully, but these errors were encountered: