Skip to content

Commit 45c5727

Browse files
authored
Fixed version string (#209)
* fix version string
1 parent 824d404 commit 45c5727

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/scripts/run-tests.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ if [ -z "${PROFILE_STR}" ] ; then
3030
exit 1
3131
fi
3232

33-
if [[ "${COH_VER}" =~ "22.06" ]] || [[ "${COH_VER}" =~ "14.1.1.2206" ]] || [[ "${COH_VER}" =~ "14.1.2" ]]; then
33+
if [[ "${COH_VER}" =~ "22.06" ]] || [[ "${COH_VER}" =~ "14.1.1-2206" ]] || [[ "${COH_VER}" =~ "14.1.2" ]]; then
3434
echo "Coherence CE ${COH_VER}"
3535
COHERENCE_CLIENT_REQUEST_TIMEOUT=180.0 \
3636
COHERENCE_VERSION=$COH_VER \
@@ -47,7 +47,7 @@ else
4747
fi
4848

4949
# Run tests with SSL
50-
if [[ "${COH_VER}" =~ "22.06" ]] || [[ "${COH_VER}" =~ "14.1.1.2206" ]] || [[ "${COH_VER}" =~ "14.1.2" ]]; then
50+
if [[ "${COH_VER}" =~ "22.06" ]] || [[ "${COH_VER}" =~ "14.1.1-2206" ]] || [[ "${COH_VER}" =~ "14.1.2" ]]; then
5151
echo "Coherence CE ${COH_VER} with SSL"
5252
RUN_SECURE=true COHERENCE_IGNORE_INVALID_CERTS=true \
5353
COHERENCE_TLS_CERTS_PATH=$(pwd)/tests/utils/certs/guardians-ca.crt \

0 commit comments

Comments
 (0)