Skip to content

Commit 7ed6a13

Browse files
committed
Fixes conditional comparison in shell script
1 parent 2eeda95 commit 7ed6a13

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/all-tests.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ cargo test -v -p ndarray -p ndarray-rand --release --features "$FEATURES" $QC_FE
2323
# BLAS tests
2424
cargo test -p ndarray --lib -v --features blas
2525
cargo test -p blas-mock-tests -v
26-
if [ "$CHANNEL" == "1.64.0" ]; then
26+
if [ "$CHANNEL" = "1.64.0" ]; then
2727
cargo test -p blas-tests -v --features blas-tests/blis-system
2828
else
2929
cargo test -p blas-tests -v --features blas-tests/openblas-system
3030
fi
31-
if [ "$CHANNEL" == "1.64.0" ]; then
31+
if [ "$CHANNEL" = "1.64.0" ]; then
3232
cargo test -p numeric-tests -v --features numeric-tests/test_blis
3333
else
3434
cargo test -p numeric-tests -v --features numeric-tests/test_blas

0 commit comments

Comments
 (0)