Skip to content

Commit e3a343b

Browse files
committed
fix tests
1 parent 65201eb commit e3a343b

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

tests/test_tabi.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@
3838
3939
4040
41+
from typing_extensions import Required
42+
43+
4144
class MyTableRow(TypedDict, total=False):
4245
id: Required[str]
4346
""" Required property """
@@ -347,6 +350,9 @@ def delete_many(*args, **kwargs) -> PolyDeleteResults:
347350
348351
349352
353+
from typing_extensions import Required
354+
355+
350356
class MyTableRow(TypedDict, total=False):
351357
id: Required[str]
352358
""" Required property """
@@ -611,9 +617,11 @@ def delete_many(*args, **kwargs) -> PolyDeleteResults:
611617

612618
class T(unittest.TestCase):
613619
def test_render_simple(self):
620+
self.maxDiff = 20000
614621
output = _render_table(TABLE_SPEC_SIMPLE)
615622
self.assertEqual(output, EXPECTED_SIMPLE)
616623

617624
def test_render_complex(self):
625+
self.maxDiff = 20000
618626
output = _render_table(TABLE_SPEC_COMPLEX)
619627
self.assertEqual(output, EXPECTED_COMPLEX)

0 commit comments

Comments
 (0)