Revision: 40e713147911
Author: Jussi Malinen
Date: Wed Jun 15 13:26:33 2011
Log: oops, accidentally added case ignoring to a regular expression
that did not need it
http://code.google.com/p/robotframework/source/detail?r=40e713147911
Modified:
/src/robot/webcontent/util.js
=======================================
--- /src/robot/webcontent/util.js Wed Jun 15 13:18:16 2011
+++ /src/robot/webcontent/util.js Wed Jun 15 13:26:33 2011
@@ -51,7 +51,7 @@
function Matcher(pattern) {
pattern = normalize(regexpEscape(pattern));
- var rePattern = '^' +
pattern.replace(/\\\?/g, ".").replace(/\\\*/gi, ".*") + '$';
+ var rePattern = '^' +
pattern.replace(/\\\?/g, ".").replace(/\\\*/g, ".*") + '$';
var regexp = new RegExp(rePattern);
return {
matches: function (string) { return regexp.test(string); }