summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2014-01-24 18:50:24 +0100
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2014-01-24 18:50:24 +0100
commitf8ab08b44dee8a573176f0fcbb78e173d33c46df (patch)
tree289dc8c68c2df7d4b4a2e44f0336983ac3ae69b9
parent721c34b42af679e2575e318ecdf1fb9735f02473 (diff)
downloadgnutls-f8ab08b44dee8a573176f0fcbb78e173d33c46df.tar.gz
corrected test
-rwxr-xr-xtests/suite/ciphersuite/test-ciphersuites.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/suite/ciphersuite/test-ciphersuites.sh b/tests/suite/ciphersuite/test-ciphersuites.sh
index dda41e9e48..028a92f8e7 100755
--- a/tests/suite/ciphersuite/test-ciphersuites.sh
+++ b/tests/suite/ciphersuite/test-ciphersuites.sh
@@ -1,11 +1,11 @@
#! /bin/sh
nodejs --help >/dev/null 2>&1
-if test $? == 0;then
+if test $? = 0;then
NODEJS=nodejs
else
node --help >/dev/null 2>&1
- if test $? == 0;then
+ if test $? = 0;then
NODEJS=node
fi
fi