class: RegressionTests::CompilerTest
authorStefan Vogel <sv@exept.de>
Thu, 04 Apr 2013 10:50:44 +0200
changeset 877 6e000c4a4faa
parent 876 b210d31a1c19
child 878 05ff46227bbf
class: RegressionTests::CompilerTest fix endless recursion
RegressionTests__CompilerTest.st
--- a/RegressionTests__CompilerTest.st	Wed Apr 03 18:14:05 2013 +0200
+++ b/RegressionTests__CompilerTest.st	Thu Apr 04 10:50:44 2013 +0200
@@ -2050,7 +2050,7 @@
 test_good_return1
     |setOfPossibleExceptions|
 
-    setOfPossibleExceptions := SignalSet with:(Parser::ParseWarning) with:(Parser::ParseError).
+    setOfPossibleExceptions := SignalSet with:ParseWarning with:ParseError.
     self
         shouldnt:
             [
@@ -2300,3 +2300,4 @@
 version_CVS
     ^ '$Header$'
 ! !
+