summaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
authorjluehrs2 <jluehrs2@uiuc.edu>2008-05-22 01:20:42 -0500
committerjluehrs2 <jluehrs2@uiuc.edu>2008-05-22 01:20:42 -0500
commitd9befff3ab7491acd3a7781bbe148350748d2163 (patch)
tree432d5b285c97d8bf01de77051108390978304c53 /t
parentc0bc51c4c1845df1ded9f0ec1480a3f32f7e9aba (diff)
downloadlanguage-teco-d9befff3ab7491acd3a7781bbe148350748d2163.tar.gz
language-teco-d9befff3ab7491acd3a7781bbe148350748d2163.zip
? is just part of the output
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';