(arrow_property_graph)
| 850 | |
| 851 | @pytest.fixture(scope="module") |
| 852 | def simple_context(arrow_property_graph): |
| 853 | sg = arrow_property_graph.project(vertices={"v0": ["id"]}, edges={"e0": ["weight"]}) |
| 854 | return sssp(sg, 20) |
| 855 | |
| 856 | |
| 857 | @pytest.fixture(scope="module") |