Browse Source

fix(division): output numbers in the short version

DEV-4199-make-test-environment-compatible-with-python-exercises
eslopfer 2 years ago
parent
commit
46ab89401a
  1. 2
      sh/tests/solutions/division.sh

2
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

Loading…
Cancel
Save