Correcting an error.

This commit is contained in:
pschwartau%netscape.com 2003-12-13 23:41:09 +00:00
parent bf6feda3d0
commit 20d7a3ea4f

View File

@ -122,7 +122,7 @@ string = 'abccccc{3 }c{ 3}c{3, }c{3 ,}de';
status = inSection(9);
pattern = /c{3[.]}/;
actualmatch = string.match(pattern);
expectedmatch = Array('c{3 ');
expectedmatch = Array('c{3 }');
addThis();
status = inSection(10);