Skip to content

Commit

Permalink
Delete old error message
Browse files Browse the repository at this point in the history
  • Loading branch information
algochoi committed Nov 3, 2022
1 parent 5b680e3 commit 52f3b85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/scripts/e2e_subs/e2e-app-simple.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ printf 'int 1' > "${TEMPDIR}/simplev1.teal"
# Fail in creating app with v1 approval program
RES=$(${gcmd} app create --creator ${ACCOUNT} --approval-prog "${TEMPDIR}/simplev1.teal" --clear-prog "${TEMPDIR}/simple.teal" --global-byteslices 0 --global-ints ${GLOBAL_INTS} --local-byteslices 0 --local-ints 0 2>&1 || true)
EXPERROR='program version must be >= 2 for this transaction group'
if [[ $RES != *"${EXPERROR}"* && $RES != *"${EXPERRORUNICODE}"* ]]; then
if [[ $RES != *"${EXPERROR}"* ]]; then
date '+app-create-test FAIL should fail to create app with v1 approval program %Y%m%d_%H%M%S'
false
fi
Expand Down

0 comments on commit 52f3b85

Please sign in to comment.