checkin from browser
authorClaus Gittinger <cg@exept.de>
Fri, 11 Jun 1999 19:17:34 +0200
changeset 36 fe8e9bc7953d
parent 35 91703aab73bd
child 37 166691c3c99d
checkin from browser
RegressionTests__IntegerTest.st
--- a/RegressionTests__IntegerTest.st	Fri Jun 11 19:13:31 1999 +0200
+++ b/RegressionTests__IntegerTest.st	Fri Jun 11 19:17:34 1999 +0200
@@ -1135,9 +1135,9 @@
     self test:[(0 perform:'*' asSymbol with:n1) printString = '0'].
 
     self test:[(1 * n1) printString = '100000'].
-    self test:[(n1 perform:'*' asSymbol with:n1) printString = '100000'].
+    self test:[(1 perform:'*' asSymbol with:n1) printString = '100000'].
     self test:[(1 * n2) printString = '-100000'].
-    self test:[(n2 perform:'*' asSymbol with:n2) printString = '-100000'].
+    self test:[(1 perform:'*' asSymbol with:n2) printString = '-100000'].
 
     self test:[(-1 * n1) printString = '-100000'].
     self test:[(-1 perform:'*' asSymbol with:n1) printString = '-100000'].
@@ -1145,15 +1145,15 @@
     self test:[(-1 perform:'*' asSymbol with:n2) printString = '100000'].
 
     self test:[(2 * n1) printString = '200000'].
-    self test:[(n1 perform:'*' asSymbol with:n1) printString = '200000'].
+    self test:[(2 perform:'*' asSymbol with:n1) printString = '200000'].
     self test:[(3 * n1) printString = '300000'].
-    self test:[(n1 perform:'*' asSymbol with:n1) printString = '300000'].
+    self test:[(3 perform:'*' asSymbol with:n1) printString = '300000'].
     self test:[(4 * n1) printString = '400000'].
-    self test:[(n1 perform:'*' asSymbol with:n1) printString = '400000'].
+    self test:[(4 perform:'*' asSymbol with:n1) printString = '400000'].
     self test:[(5 * n1) printString = '500000'].
-    self test:[(n1 perform:'*' asSymbol with:n1) printString = '500000'].
+    self test:[(5 perform:'*' asSymbol with:n1) printString = '500000'].
     self test:[(6 * n1) printString = '600000'].
-    self test:[(n1 perform:'*' asSymbol with:n1) printString = '600000'].
+    self test:[(6 perform:'*' asSymbol with:n1) printString = '600000'].
     self test:[(7 * n1) printString = '700000'].
     self test:[(7 perform:'*' asSymbol with:n1) printString = '700000'].