diff --git a/sh/tests/solutions/division.sh b/sh/tests/solutions/division.sh index 253cc2c0f..8f5b62ef9 100755 --- a/sh/tests/solutions/division.sh +++ b/sh/tests/solutions/division.sh @@ -22,7 +22,7 @@ then fi # Divide the first argument by the second using bc -result=$(echo "$1 / $2" | bc -l) +result=$(echo "$1 / $2" | bc ) # Output the result echo $result