Skip to content

Commit

Permalink
charm func test runner: fix broken target list
Browse files Browse the repository at this point in the history
The list of test targets was always "target" instead of the actual list
of targets due to an accidentally ommited $-sign in canonical#230
  • Loading branch information
lathiat authored and slapcat committed Nov 7, 2024
1 parent 814999f commit e903027
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openstack/tools/charmed_openstack_functest_runner.sh
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ if [[ -n $FUNC_TEST_TARGET ]]; then
func_targets[$FUNC_TEST_TARGET]=null
else
for target in $(python3 $TOOLS_PATH/identify_charm_func_tests.py); do
func_targets[target]=null
func_targets[$target]=null
done
fi

Expand Down

0 comments on commit e903027

Please sign in to comment.