()
| 1265 | |
| 1266 | |
| 1267 | def test_reprcompare_notin() -> None: |
| 1268 | assert callop("not in", "foo", "aaafoobbb") == [ |
| 1269 | "'foo' not in 'aaafoobbb'", |
| 1270 | "'foo' is contained here:", |
| 1271 | " aaafoobbb", |
| 1272 | "? +++", |
| 1273 | ] |
| 1274 | |
| 1275 | |
| 1276 | def test_reprcompare_whitespaces() -> None: |