diff options
Diffstat (limited to 'karm/test/version.sh')
-rwxr-xr-x | karm/test/version.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/karm/test/version.sh b/karm/test/version.sh index 64fbc8fb0..6350e73cb 100755 --- a/karm/test/version.sh +++ b/karm/test/version.sh @@ -7,7 +7,7 @@ exec >>check.log 2>&1 TESTFILE="/tmp/testkarm1.ics" VERSION="1.6.0" -source __lib.sh +. ./__lib.sh set_up @@ -15,7 +15,7 @@ RVAL=`dcop $DCOPID KarmDCOPIface version 2>/dev/null` tear_down -if [ "$RVAL" == "$VERSION" ]; then +if [ "$RVAL" = "$VERSION" ]; then echo "PASS $0" exit 0; else |