Skip to content

Commit

Permalink
Merge branch 'main' into spelling-yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
lidongze0629 committed Feb 23, 2024
2 parents c2ec7af + deb58fc commit 5b9b3e3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion python/graphscope/tests/kubernetes/test_demo_script.py
Original file line number Diff line number Diff line change
Expand Up @@ -819,7 +819,7 @@ def test_helm_installation(data_dir, modern_graph_data_dir):
sub_graph.add_column(pr_result, {"Ranking": "r"})


def test_modualize():
def test_modularize():
sess = graphscope.session(
num_workers=1,
k8s_image_registry=get_gs_registry_on_ci_env(),
Expand Down
6 changes: 3 additions & 3 deletions python/graphscope/tests/unittest/test_create_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ def test_error_on_src_dst_refer_to_same_col(graphscope_session, student_group_e)
graph = graph.add_edges(student_group_e, "group", src_field=0, dst_field=0)


def test_error_on_ambigious_default_label(
def test_error_on_ambiguous_default_label(
graphscope_session, student_group_e, student_v, teacher_v
):
graph = graphscope_session.g()
Expand Down Expand Up @@ -543,7 +543,7 @@ def test_Load_complex_graph_variants(
["score", "score_id"],
src_label="student",
dst_label="lesson",
src_field="studnet_id",
src_field="student_id",
dst_field="subject",
)
graph = graph.add_edges(
Expand All @@ -552,7 +552,7 @@ def test_Load_complex_graph_variants(
["member_size"],
src_label="student",
dst_label="student",
src_field="leader_studnet_id",
src_field="leader_student_id",
dst_field="member_student_id",
)
assert graph.schema is not None
Expand Down

0 comments on commit 5b9b3e3

Please sign in to comment.