diff options
Diffstat (limited to 't/lib')
-rw-r--r-- | t/lib/h2ph.h | 2 | ||||
-rw-r--r-- | t/lib/h2ph.pht | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/t/lib/h2ph.h b/t/lib/h2ph.h index cddf0a7d94..128ec5f1ae 100644 --- a/t/lib/h2ph.h +++ b/t/lib/h2ph.h @@ -38,7 +38,7 @@ #if !(defined __SOMETHING_MORE_IMPORTANT) # warn Be careful... #elif !(defined __SOMETHING_REALLY_REALLY_IMPORTANT) -# error Nup, can't go on /* ' /* stupid font-lock-mode */ +# error "Nup, can't go on" /* ' /* stupid font-lock-mode */ #else /* defined __SOMETHING_MORE_IMPORTANT && defined __SOMETHING_REALLY_REALLY_IMPORTANT */ # define EVERYTHING_IS_OK #endif diff --git a/t/lib/h2ph.pht b/t/lib/h2ph.pht index e5b293243e..e8868dcb4a 100644 --- a/t/lib/h2ph.pht +++ b/t/lib/h2ph.pht @@ -29,7 +29,7 @@ unless(defined(&_H2PH_H_)) { if(!(defined (defined(&__SOMETHING_MORE_IMPORTANT) ? &__SOMETHING_MORE_IMPORTANT : 0))) { } elsif(!(defined (defined(&__SOMETHING_REALLY_REALLY_IMPORTANT) ? &__SOMETHING_REALLY_REALLY_IMPORTANT : 0))) { - die("Nup\,\ can\'t\ go\ on\ "); + die("Nup, can't go on"); } else { eval 'sub EVERYTHING_IS_OK () {1;}' unless defined(&EVERYTHING_IS_OK); } |