Skip to content

Commit

Permalink
ignore error in test_output.py
Browse files Browse the repository at this point in the history
  • Loading branch information
dantownsend committed Dec 23, 2023
1 parent b3b1dcf commit e2d8499
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/table/test_output.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,8 @@ def test_output_nested_with_first(self):
.output(nested=True)
.run_sync()
)
assert response is not None
self.assertDictEqual(
response, {"name": "Pythonistas", "manager": {"name": "Guido"}}
response, # type: ignore
{"name": "Pythonistas", "manager": {"name": "Guido"}},
)

0 comments on commit e2d8499

Please sign in to comment.