Skip to content

Commit 3cfe5ff

Browse files
authored
Use local
1 parent c96fb67 commit 3cfe5ff

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ eval $(grep -E -o '[a-z]+_version=[0-9.]+' $context/Dockerfile)
2020
mysql_version=$(head -n1 $context/Dockerfile | grep -E -o '[0-9.]{2,}')
2121

2222
function run_sql() {
23-
sql="$1"
23+
local sql="$1"
2424
docker container exec "${container_name}" mysql -uroot -sse "${sql}"
2525
}
2626

2727
function assert() {
28-
expected="$1"
29-
actual="$2"
28+
local expected="$1"
29+
local actual="$2"
3030
if [ "${expected}" = "${actual}" ]; then
3131
return 0
3232
fi

0 commit comments

Comments
 (0)