All tests passing except 'apply', which is genuinely broken; I'm not yet sure

what's wrong.
This commit is contained in:
Simon Brooke 2017-10-15 14:17:54 +01:00
parent f988147bb2
commit ba4a31c25a
7 changed files with 59 additions and 31 deletions

View file

@ -1,7 +1,7 @@
#!/bin/bash
expected='1'
actual=`echo "(apply 'add '(1))"| target/psse 2> /dev/null | head -1`
actual=`echo "(apply add '(1))"| target/psse 2> /dev/null | head -1`
if [ "${expected}" = "${actual}" ]
then