(file_jsons, simple_jsons)
| 118 | |
| 119 | @pytest.fixture(scope="module") |
| 120 | def mixed_jsons(file_jsons, simple_jsons) -> dict[str, Any]: |
| 121 | both = file_jsons.copy() |
| 122 | both.update(simple_jsons) |
| 123 | return both |
| 124 | |
| 125 | |
| 126 | @pytest.fixture(scope="module") |