summaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
Diffstat (limited to 't')
-rw-r--r--t/100-errors.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/100-errors.t b/t/100-errors.t
index 8fbd91b..cc8c7b9 100644
--- a/t/100-errors.t
+++ b/t/100-errors.t
@@ -7,7 +7,7 @@ use Language::TECO;
my $buftext = "this is\nan initial buffer";
my $te = Language::TECO->new($buftext);
-throws_ok { $te->execute("100j") } qr/\? Pointer off page/,
+throws_ok { $te->execute("100j") } qr/Pointer off page/,
'moving the pointer off the end of the buffer';
-throws_ok { $te->execute("-10j") } qr/\? Pointer off page/,
+throws_ok { $te->execute("-10j") } qr/Pointer off page/,
'moving the pointer off the end of the buffer';