File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ def test_fetch_json():
39
39
input = "json" ,
40
40
output = ["doc" ],
41
41
)
42
- result = node .execute ({"json" : "tests/nodes/ inputs/example.json" })
42
+ result = node .execute ({"json" : "inputs/example.json" })
43
43
assert result is not None
44
44
45
45
@@ -48,7 +48,7 @@ def test_fetch_xml():
48
48
input = "xml" ,
49
49
output = ["doc" ],
50
50
)
51
- result = node .execute ({"xml" : "tests/nodes/ inputs/books.xml" })
51
+ result = node .execute ({"xml" : "inputs/books.xml" })
52
52
assert result is not None
53
53
54
54
@@ -57,7 +57,7 @@ def test_fetch_csv():
57
57
input = "csv" ,
58
58
output = ["doc" ],
59
59
)
60
- result = node .execute ({"csv" : "tests/nodes/ inputs/username.csv" })
60
+ result = node .execute ({"csv" : "inputs/username.csv" })
61
61
assert result is not None
62
62
63
63
@@ -66,6 +66,6 @@ def test_fetch_txt():
66
66
input = "txt" ,
67
67
output = ["doc" , "links" , "images" ],
68
68
)
69
- with open ("tests/nodes/ inputs/plain_html_example.txt" ) as f :
69
+ with open ("inputs/plain_html_example.txt" ) as f :
70
70
result = node .execute ({"txt" : f .read ()})
71
71
assert result is not None
You can’t perform that action at this time.
0 commit comments