Skip to content

Commit

Permalink
Fix tests/end2end-tests/data_process/test_data.py
Browse files Browse the repository at this point in the history
  • Loading branch information
thvasilo committed Nov 15, 2023
1 parent 25f4113 commit 5f7ee71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/end2end-tests/data_process/test_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ def read_data_parquet(data_file):
else:
raise ValueError('Invalid graph format: {}'.format(args.graph_format))

node1_map = read_data_parquet(os.path.join(out_dir, "node1_id_remap.parquet"))
node1_map = read_data_parquet(os.path.join(out_dir, "node_id_mappings", "node1"))
reverse_node1_map = {val: key for key, val in zip(node1_map['orig'], node1_map['new'])}
node3_map = read_data_parquet(os.path.join(out_dir, "node3_id_remap.parquet"))
node3_map = read_data_parquet(os.path.join(out_dir, "node_id_mappings", "node3"))
reverse_node3_map = {val: key for key, val in zip(node3_map['orig'], node3_map['new'])}

# Test the first node data
Expand Down

0 comments on commit 5f7ee71

Please sign in to comment.