(
left: Any,
right: Any,
verbose: int = 0,
assertion_text_diff_style: str = util.ASSERTION_TEXT_DIFF_STYLE_NDIFF,
)
| 445 | |
| 446 | |
| 447 | def callequal( |
| 448 | left: Any, |
| 449 | right: Any, |
| 450 | verbose: int = 0, |
| 451 | assertion_text_diff_style: str = util.ASSERTION_TEXT_DIFF_STYLE_NDIFF, |
| 452 | ) -> list[str] | None: |
| 453 | return callop( |
| 454 | class="st">"==", |
| 455 | left, |
| 456 | right, |
| 457 | verbose, |
| 458 | assertion_text_diff_style=assertion_text_diff_style, |
| 459 | ) |
| 460 | |
| 461 | |
| 462 | class TestAssert_reprcompare: |
no test coverage detected