Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
xuriwuyun committed Oct 18, 2024
1 parent 7fde385 commit e97a193
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions addons/mysql/scripts-ut-spec/configre_proxysql_spec.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Describe "ProxySQL Configuration Script Tests"

It "executes MySQL command successfully"
mysql() {
echo "MySQL command executed: $@"
echo "MySQL command executed: "$@
return 0
}
When call mysql_exec "root" "password" "localhost" "3306" "SELECT 1"
Expand All @@ -36,7 +36,7 @@ Describe "ProxySQL Configuration Script Tests"

It "fails to execute MySQL command"
mysql() {
echo "MySQL command failed: $@">&2
echo "MySQL command failed: "$@>&2
return 1
}
When call mysql_exec "root" "password" "localhost" "3306" "INVALID COMMAND"
Expand Down

0 comments on commit e97a193

Please sign in to comment.