Skip to content

Commit

Permalink
Fix file not found error in ManuelTest (#9750)
Browse files Browse the repository at this point in the history
The relative path has changed to the absolute path.

Signed-off-by: Taewan Kim <[email protected]>
  • Loading branch information
tiokim authored and pull[bot] committed Oct 1, 2021
1 parent ce6e18d commit 1075847
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test_driver/linux-cirque/ManualTest.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def _parse_mount_dir(config):
if not options.topologyFile:
raise Exception("Must specify a topology file!")

with open(options.topologyFile, "r") as fp:
with open(os.path.join(CHIP_REPO, options.topologyFile), "r") as fp:
config_operations = [_parse_mount_dir]
DEVICE_CONFIG = json.load(fp)
for op in config_operations:
Expand Down

0 comments on commit 1075847

Please sign in to comment.