| 2496 | |
| 2497 | def test_match_test(self): |
| 2498 | class Test: |
| 2499 | def __init__(self, test_id): |
| 2500 | self.test_id = test_id |
| 2501 | |
| 2502 | def id(self): |
| 2503 | return self.test_id |
| 2504 | |
| 2505 | # Restore patterns once the test completes |
| 2506 | patterns = get_match_tests() |
no outgoing calls
searching dependent graphs…