()
| 1741 | |
| 1742 | |
| 1743 | def test_reprcompare_notin() -> None: |
| 1744 | assert callop("not in", "foo", "aaafoobbb") == [ |
| 1745 | "'foo' not in 'aaafoobbb'", |
| 1746 | "", |
| 1747 | "'foo' is contained here:", |
| 1748 | " aaafoobbb", |
| 1749 | "? +++", |
| 1750 | ] |
| 1751 | |
| 1752 | |
| 1753 | def test_reprcompare_notin_nontext() -> None: |