From 27527ee2c701afa69326dcd2748b2182436c42e9 Mon Sep 17 00:00:00 2001
From: Slaven Rezic <slaven@rezic.de>
Date: Wed, 8 Jun 2016 22:47:42 +0200
Subject: [PATCH] fix for "Unescaped left brace in regex is deprecated" (RT
 #115108)

---
 tests/xemulator/class_methodmaker/Test.pm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/xemulator/class_methodmaker/Test.pm b/tests/xemulator/class_methodmaker/Test.pm
index fc37552..4ab84ad 100644
--- a/tests/xemulator/class_methodmaker/Test.pm
+++ b/tests/xemulator/class_methodmaker/Test.pm
@@ -48,7 +48,7 @@ sub COUNT_TESTS {
   open(IN, $file) or die "Can't open $file: $!";
   while (<IN>) {
     /^\s*#/ and next;
-    $c += s/(TEST\s{)/$1/g;
+    $c += s/(TEST\s\{)/$1/g;
   }
   $c;
 }
-- 
2.1.4