diff options
author | Rafael França <rafaelmfranca@gmail.com> | 2018-06-08 18:46:47 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-08 18:46:47 -0400 |
commit | 34b16ce86526c9b8ce9abfe1190eadd0caf7be49 (patch) | |
tree | cc1da202ae94bcecf1ac12ba9e53f2d104e99702 /activesupport/test | |
parent | c07c708cf692658fc8e004b5e01e42edadaad5a1 (diff) | |
parent | f1de019993ee52cd64f81cd5d168736bc2618558 (diff) | |
download | rails-34b16ce86526c9b8ce9abfe1190eadd0caf7be49.tar.gz rails-34b16ce86526c9b8ce9abfe1190eadd0caf7be49.tar.bz2 rails-34b16ce86526c9b8ce9abfe1190eadd0caf7be49.zip |
Merge pull request #33103 from bogdanvlviv/fix-using-of-method_call_assertions
Remove extra `include ActiveSupport::Testing::MethodCallAssertions`
Diffstat (limited to 'activesupport/test')
-rw-r--r-- | activesupport/test/testing/method_call_assertions_test.rb | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/activesupport/test/testing/method_call_assertions_test.rb b/activesupport/test/testing/method_call_assertions_test.rb index 4af000bb7e..0500e47def 100644 --- a/activesupport/test/testing/method_call_assertions_test.rb +++ b/activesupport/test/testing/method_call_assertions_test.rb @@ -1,11 +1,8 @@ # frozen_string_literal: true require "abstract_unit" -require "active_support/testing/method_call_assertions" class MethodCallAssertionsTest < ActiveSupport::TestCase - include ActiveSupport::Testing::MethodCallAssertions - class Level def increment; 1; end def decrement; end |