diff options
author | Yves Senn <yves.senn@gmail.com> | 2013-10-28 10:08:55 +0100 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2013-10-28 10:08:55 +0100 |
commit | c1ae3d7731e55ac5966500d4f2da6057c71c9510 (patch) | |
tree | 0b5739acb26812f2a47cfbef203b8defc43d14e2 /activesupport | |
parent | 8bf3411de972e15b7ffe5767d86d3e8b0917f120 (diff) | |
download | rails-c1ae3d7731e55ac5966500d4f2da6057c71c9510.tar.gz rails-c1ae3d7731e55ac5966500d4f2da6057c71c9510.tar.bz2 rails-c1ae3d7731e55ac5966500d4f2da6057c71c9510.zip |
fix typo in comment [ci skip].
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/test_case.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/test_case.rb b/activesupport/lib/active_support/test_case.rb index 2f27aff2bd..5e24118d34 100644 --- a/activesupport/lib/active_support/test_case.rb +++ b/activesupport/lib/active_support/test_case.rb @@ -22,7 +22,7 @@ module Minitest # :nodoc: def self.__run reporter, options # :nodoc: # FIXME: MT5's runnables is not ordered. This is needed because - # we have have tests have cross-class order-dependent bugs. + # we have tests with cross-class order-dependent bugs. suites = Runnable.runnables.sort_by { |ts| ts.name.to_s } parallel, serial = suites.partition { |s| s.test_order == :parallel } |