Skip to content

Commit

Permalink
fixing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sierra-moxon committed May 10, 2023
1 parent e026c94 commit 305b244
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/resources/test-transform-rdf-tsv.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ transform:
output:
format: tsv
filename:
- test-tranform-rdf
- test-transform-rdf
valid_graph:
name: "Valid JSON Graph"
input:
Expand Down
6 changes: 3 additions & 3 deletions tests/unit/test_cli_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -870,10 +870,10 @@ def test_transform_rdf_to_tsv():
"""
Transform from a test transform YAML.
"""
transform_config = os.path.join(RESOURCE_DIR, "test-transform-tsv-rdf.yaml")
transform_config = os.path.join(RESOURCE_DIR, "test-transform-rdf-tsv.yaml")
transform(inputs=None, transform_config=transform_config)
assert os.path.exists(os.path.join(TARGET_DIR, "test-transform-rdf.tsv"))
assert os.path.exists(os.path.join(TARGET_DIR, "test-transform-rdf.tsv"))
assert os.path.exists(os.path.join(TARGET_DIR, "test-transform-rdf_edges.tsv"))
assert os.path.exists(os.path.join(TARGET_DIR, "test-transform-rdf_nodes.tsv"))


def test_transform_tsv_to_rdf():
Expand Down

0 comments on commit 305b244

Please sign in to comment.