diff options
Diffstat (limited to 'karm/test/booktime-works.sh')
-rwxr-xr-x | karm/test/booktime-works.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/karm/test/booktime-works.sh b/karm/test/booktime-works.sh index 280e1231b..4f242163c 100755 --- a/karm/test/booktime-works.sh +++ b/karm/test/booktime-works.sh @@ -2,7 +2,7 @@ TESTFILE="/tmp/testkarm1.ics" -source __lib.sh +. ./__lib.sh set_up @@ -21,7 +21,7 @@ RVAL=`dcop $DCOPID KarmDCOPIface totalMinutesForTaskId $TASKID 2>/dev/null` SKIP_TESTFILE_DELETE=true tear_down -if [ "x$RVAL" == "x$DURATION" ]; then +if [ "x$RVAL" = "x$DURATION" ]; then echo "PASS $0" exit 0; else |