dalehenrich / filetree

Monticello repository for directory-based Monticello packages enabling the use of git, svn, etc. for managing Smalltalk source code.
https://github.com/CampSmalltalk/Cypress
MIT License
133 stars 26 forks source link

Workaround for the following bug: https://pharo.fogbugz.com/default.asp?... #105

Closed demarey closed 11 years ago

demarey commented 11 years ago

...11488

frankshearar commented 11 years ago

The referenced bug says:

Some FileTree tests fail because Number>>to:do: does not work. 
A code like 1 to: 3 do: [ :index | ... ] ends with a nil index inside the block.
A workaround is to use (1 to 3) do: [ :index | ... ]