Use proper quoting for the expected-failure reason

This commit is contained in:
pgoyette 2012-12-01 04:43:44 +00:00
parent 3ce5310bf2
commit 5cf1898f6e

View File

@ -1,4 +1,4 @@
# $NetBSD: h_common.sh,v 1.6 2012/11/30 14:46:48 pgoyette Exp $
# $NetBSD: h_common.sh,v 1.7 2012/12/01 04:43:44 pgoyette Exp $
#
# Copyright (c) 2008, 2010 The NetBSD Foundation, Inc.
# All rights reserved.
@ -71,7 +71,7 @@ failing_test_case()
atf_test_case "${name}"
eval "${name}_body() { \
atf_expect_fail "${reason}"; \
atf_expect_fail '${reason}'; \
${check_function} '${name}' " "${@}" "; \
}"
}