From 2da50bcae95c09e7ffbad5c5790392e6060c776c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Rodr=C3=ADguez?= Date: Wed, 4 Dec 2019 10:10:13 +0100 Subject: [PATCH] Remove unnecessary workaround Fix was released with path_expander v1.0.4. --- util/bisect | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/util/bisect b/util/bisect index 8d350e3dcc15..e59083318ea1 100755 --- a/util/bisect +++ b/util/bisect @@ -7,25 +7,4 @@ rescue Gem::GemNotFoundException abort "Install minitest-bisect gem to run a rubygems test suite bisection" end -# -# Need to monkeypatch the `path_expander` gem to make sure it uses the same -# sorted set of files as `rake`. Otherwise `rake test` failures are -# irreproducible. Can be removed once -# https://github.com/seattlerb/path_expander/pull/4 is released. -# - -module RefinedPathExpander - def expand_dirs_to_files(*dirs) - super.sort - end -end - -require 'path_expander' - -class PathExpander - - prepend RefinedPathExpander - -end - load minitest_bisect