Skip to content

Commit

Permalink
move test_vectors in test folder
Browse files Browse the repository at this point in the history
  • Loading branch information
Thoralf-M committed May 4, 2021
1 parent 49d6fd1 commit 1fde018
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion bindings/python/native/tests/test_full_node_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

# Read the test vector
tv = dict()
with open('../../../fixtures/test_vectors.json') as json_file:
with open('tests/fixtures/test_vectors.json') as json_file:
tv = json.load(json_file)

client = iota_client.Client(nodes_name_password=[[tv['NODE_URL']]])
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/native/tests/test_high_level_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

# Read the test vector
tv = dict()
with open('../../../fixtures/test_vectors.json') as json_file:
with open('tests/fixtures/test_vectors.json') as json_file:
tv = json.load(json_file)

client = iota_client.Client(nodes_name_password=[[tv['NODE_URL']]])
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/native/tests/test_mqtt.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

# Read the test vector
tv = dict()
with open('../../../fixtures/test_vectors.json') as json_file:
with open('tests/fixtures/test_vectors.json') as json_file:
tv = json.load(json_file)

# The queue to store received events
Expand Down

0 comments on commit 1fde018

Please sign in to comment.