2005-07-20 Aldo Monteiro <aldo@psl-pr.softwarelivre.org>, Renato Suga <renato@psl...
authorRafael Teixeira <monoman@gmail.com>
Wed, 20 Jul 2005 18:44:23 +0000 (18:44 -0000)
committerRafael Teixeira <monoman@gmail.com>
Wed, 20 Jul 2005 18:44:23 +0000 (18:44 -0000)
* Modified the test DecimalLiteralTestA.vb (to differentiate error numbers)

svn path=/trunk/mcs/; revision=47481

mcs/mbas/Test/tests/types/ChangeLog
mcs/mbas/Test/tests/types/DecimalLiteralTestA.vb

index 46bcff78c7ea4fbc6bce8a37f164f468b98de9e2..ae50ac5a442435af5dd181d1e249dfe6a9f67e22 100644 (file)
@@ -1,3 +1,6 @@
+2005-07-20 Aldo Monteiro <aldo@psl-pr.softwarelivre.org>, Renato Suga <renato@psl-pr.softwarelivre.org>
+       * Modified the test DecimalLiteralTestA.vb (to differentiate error numbers)
+
 2005-05-02  Ritvik Mayank  <mritvik@novell.com>
             Patch submitted by Sudharsan V <vsudharsan@novell.com>
                Following Tests were modified     
index 11da33b9f5ab8661e455c9e902ab80c939615b5c..74b88a4ea891940db3f480e882738b0a279d4700 100644 (file)
@@ -10,16 +10,16 @@ Module DecimalLiteral
                        Throw New Exception ("#A1-DecimalLiteralA:Failed") 
                End If
                If b<>1.23E+10D Then
-                       Throw New Exception ("#A1-DecimalLiteralA:Failed")
+                       Throw New Exception ("#A2-DecimalLiteralA:Failed")
                End If
                If c<>9.2233720368547808E+18D Then
-                       Throw New Exception ("#A1-DecimalLiteralA:Failed") 
+                       Throw New Exception ("#A3-DecimalLiteralA:Failed") 
                End If
                If d<>0.23D Then
-                       Throw New Exception ("#A1-DecimalLiteralA:Failed") 
+                       Throw New Exception ("#A4-DecimalLiteralA:Failed") 
                End If
                If f<>0 Then
-                       Throw New Exception ("#A1-DecimalLiteralA:Failed") 
+                       Throw New Exception ("#A5-DecimalLiteralA:Failed") 
                End If             
        End Sub
 End Module