RegressionTests__CompilerTests2.st
branchjv
changeset 1484 e5af485c693d
parent 1478 84b9cfc40f37
child 1499 26a16a04219b
--- a/RegressionTests__CompilerTests2.st	Fri Mar 04 08:16:39 2016 +0000
+++ b/RegressionTests__CompilerTests2.st	Tue Mar 08 08:02:28 2016 +0000
@@ -751,7 +751,7 @@
 
      When a package is loaded from source using
 
-	Smalltalk loadPackage:'...'
+        Smalltalk loadPackage:'...'
 
      expression and a method from loaded class in namespace uses a class from the
      same package and same namespace, that is not yet loaded (i.e., it will be loaded
@@ -764,16 +764,16 @@
 
     "/First, make sure that package is not yet loaded...
     self
-	assert: (Smalltalk at: #'exept_regression_estData_CompilerTests2') isNil
-	description: 'Mock package already loaded'.
+        assert: (Smalltalk at: #'exept_regression_testData_CompilerTests2') isNil
+        description: 'Mock package already loaded'.
 
     self
-	assert: (Smalltalk loadPackage: #'exept:regression/testData/CompilerTests2')
-	description: 'Cannot load mock package!!'.
+        assert: (Smalltalk loadPackage: #'exept:regression/testData/CompilerTests2')
+        description: 'Cannot load mock package!!'.
 
 
     self assert: (Smalltalk at: #'RegressionTests::CompilerTests2Mock1') new foo class
-		    == (Smalltalk at: #'RegressionTests::CompilerTests2Mock2')
+                    == (Smalltalk at: #'RegressionTests::CompilerTests2Mock2')
 
     "Created: / 26-10-2012 / 12:26:57 / Jan Vrany <jan.vrany@fit.cvut.cz>"
     "Modified (comment): / 12-02-2013 / 16:24:48 / Jan Vrany <jan.vrany@fit.cvut.cz>"