(filename, lineno)
| 661 | def test_format_traceback(self): |
| 662 | snapshot, snapshot2 = create_snapshots() |
| 663 | def getline(filename, lineno): |
| 664 | return ' <%s, %s>' % (filename, lineno) |
| 665 | with unittest.mock.patch('tracemalloc.linecache.getline', |
| 666 | side_effect=getline): |
| 667 | tb = snapshot.traces[0].traceback |
no outgoing calls
no test coverage detected