Hi seasideers. I was loading all this stuff of PharoCore 1.1 and see if everything seems to be working. At this is the case :)<br>However, I have 2 tests with errors and this is due to send to BlockClosure &gt;&gt; fixTemps which is deprecated in Pharo 1.1<br>
The fix is easy, just remove the send of fixTemps, but I am not sure the impact of this in other dialects. But would be cool not to have the deprecated warning when loading.<br><br>The places are Amb &gt;&gt; oneOf: aCollection   <br>
and Amb &gt;&gt; valueOfOneOf: blockCollection<br><br>Then I have two failing but I don&#39;t understand why:<br><br>WABacktrackingTest &gt;&gt; testOrderedCollection<br><br>I don&#39;t know why here, but after &quot;original removeLast.&quot;  snapshot has the elements &quot;1&quot; and &quot;nil&quot; instead of &quot;1&quot; and &quot;2&quot;, and thus, it fails in self assert: original asArray = #(1 2)<br>
<br>The other is:<br><br>WABacktrackingTest &gt;&gt; testDictionary<br>  <br>It is failing in &quot;self assert: (original at: 1 ifAbsent: []) = #a.&quot;<br>because original shows -&gt;   a Dictionary(2-&gt;#b 3-&gt;#d )<br>
<br>I know your effort is now in Seaside3 but having all green tests with Pharo 1.1 would be really cool :)<br><br>Last thing, if you want to test it, just take a PharoCore 1.1 image, for example: <br><br><a href="https://gforge.inria.fr/frs/download.php/26995/PharoCore-1.1-11357-UNSTABLE.zip">https://gforge.inria.fr/frs/download.php/26995/PharoCore-1.1-11357-UNSTABLE.zip</a><br>
<br>And then evaluate:<br><br>(Smalltalk at: #Gofer) new<br>    squeaksource: &#39;MetacelloRepository&#39;;<br>    package: &#39;ConfigurationOfSeaside&#39;;<br>    load.<br><br><br>ConfigurationOfSeaside project latestVersion load: &#39;Seaside 2.8&#39;.<br>
<br>and run tests :)<br><br>Thanks<br><br>Mariano<br><br>    <br>