Skip to content

Commit

Permalink
fix assert
Browse files Browse the repository at this point in the history
  • Loading branch information
devkral committed Oct 24, 2023
1 parent b185835 commit e1b6819
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_rdflib.py
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ def testRemoveContext(self):
self.assertEqual(len(self.get_context(c1)), 1)

self.graph.remove_context(self.get_context(c1))
self.assert_(self.c1 not in self.graph.contexts())
self.assertNotIn(self.c1, self.graph.contexts())

def testRemoveAny(self):
Any = None
Expand Down

0 comments on commit e1b6819

Please sign in to comment.