diff --git a/_posts/12-06-11-preloading-dependencies-for-faster-test-suite-start-up-times.markdown b/_posts/12-06-11-preloading-dependencies-for-faster-test-suite-start-up-times.markdown index 71ad014..29435c0 100644 --- a/_posts/12-06-11-preloading-dependencies-for-faster-test-suite-start-up-times.markdown +++ b/_posts/12-06-11-preloading-dependencies-for-faster-test-suite-start-up-times.markdown @@ -44,7 +44,7 @@ end {% endhighlight %} https://gist.github.com/2909445/ec2f22… -After preloading `slow.rb` on the first line, we'll go into a loop which creates a subprocess using `fork`. We'll require `test.rb` in this subprocess andinally, we'll call `Process.wait` in the main process, which will halt to wait for the subprocess to exit. Because `slow.rb` is already required in the main process before forking off, it won't be loaded again by `test.rb` in the forked subprocesses. +After preloading `slow.rb` on the first line, we'll go into a loop which creates a subprocess using `fork`. We'll require `test.rb` in this subprocess and finally, we'll call `Process.wait` in the main process, which will halt to wait for the subprocess to exit. Because `slow.rb` is already required in the main process before forking off, it won't be loaded again by `test.rb` in the forked subprocesses. ### Server