(self, instrs_1, instrs_2, /)
| 1982 | class InstructionTestCase(BytecodeTestCase): |
| 1983 | |
| 1984 | def assertInstructionsEqual(self, instrs_1, instrs_2, /): |
| 1985 | instrs_1 = [instr_1._replace(positions=None, cache_info=None) for instr_1 in instrs_1] |
| 1986 | instrs_2 = [instr_2._replace(positions=None, cache_info=None) for instr_2 in instrs_2] |
| 1987 | self.assertEqual(instrs_1, instrs_2) |
| 1988 | |
| 1989 | class InstructionTests(InstructionTestCase): |
| 1990 |
no test coverage detected