(self, stream_)
| 594 | |
| 595 | @pytest.fixture |
| 596 | def bytes_fixture(self, stream_): |
| 597 | name_table = _NameTable(None, stream_, 42, 360) |
| 598 | bytes_ = "\x00\x01\x02\x03\x04\x05" |
| 599 | stream_.read.return_value = bytes_ |
| 600 | expected_value = bytes_ |
| 601 | return name_table, expected_value |
| 602 | |
| 603 | @pytest.fixture( |
| 604 | params=[ |