🐛 fix(test_cli.py): convert temp_dir to string before checking if it is in COMPONENTS_PATH to ensure comparison correctness
This commit is contained in:
parent
b3c2fd26a5
commit
269116b834
1 changed files with 1 additions and 1 deletions
|
|
@ -27,4 +27,4 @@ def test_components_path(runner, client, default_settings):
|
|||
)
|
||||
assert result.exit_code == 0, result.stdout
|
||||
settings_manager = utils.get_settings_manager()
|
||||
assert temp_dir in settings_manager.settings.COMPONENTS_PATH
|
||||
assert str(temp_dir) in settings_manager.settings.COMPONENTS_PATH
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue