From c37b40ffec5674bf76bbb2197917e528e74b4552 Mon Sep 17 00:00:00 2001 From: Artyom Nikitin Date: Mon, 16 Nov 2020 16:05:00 +0300 Subject: test: update --- tests.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tests.py') diff --git a/tests.py b/tests.py index ec4758d..941c685 100755 --- a/tests.py +++ b/tests.py @@ -728,6 +728,7 @@ class CustomJsonPointerTests(unittest.TestCase): self.assertEqual(patch.pointer_cls, self.CustomJsonPointer) self.assertTrue(patch._ops) for op in patch._ops: + self.assertIsInstance(op.pointer, self.CustomJsonPointer) self.assertEqual(op.pointer_cls, self.CustomJsonPointer) def test_operations(self): @@ -744,6 +745,7 @@ class CustomJsonPointerTests(unittest.TestCase): self.assertEqual(patch.pointer_cls, self.CustomJsonPointer) self.assertTrue(patch._ops) for op in patch._ops: + self.assertIsInstance(op.pointer, self.CustomJsonPointer) self.assertEqual(op.pointer_cls, self.CustomJsonPointer) -- cgit v1.2.1