Skip to content

Commit 560c801

Browse files
committed
WIP
1 parent dccc957 commit 560c801

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/ci.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ jobs:
1111
timeout-minutes: 5
1212
strategy:
1313
matrix:
14-
os: [ ubuntu-latest, macos-11, macos-latest ]
14+
# the OS supported by GitHub Actions
15+
# https://docs.github.com/en/actions/using-github-hosted-runners/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources
16+
os: [ ubuntu-latest, macos-12, macos-latest ]
1517
fail-fast: false
1618
max-parallel: 64
1719
name: Test on ${{ matrix.os }}

test/my_unit_test_lib.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ die() {
5050

5151
assertArrayEquals() {
5252
(($# == 2 || $# == 3)) || die "assertArrayEquals must 2 or 3 arguments!"
53-
local failMsg=""
53+
local failMsg=
5454
(($# == 3)) && {
5555
failMsg=$1
5656
shift

0 commit comments

Comments
 (0)