diff options
author | Shuhei Kitagawa <shuhei.kitagawa@c-fo.com> | 2017-10-28 17:39:58 +0900 |
---|---|---|
committer | Shuhei Kitagawa <shuhei.kitagawa@c-fo.com> | 2017-10-28 17:39:58 +0900 |
commit | 03dd47ff219098305a588e16d717813eebbfa7a4 (patch) | |
tree | f691e198b50c846f25b56b9a48322d7b3f5b8b6c /activesupport | |
parent | bf6456e05395583809f4565844a8dc088431fce7 (diff) | |
download | rails-03dd47ff219098305a588e16d717813eebbfa7a4.tar.gz rails-03dd47ff219098305a588e16d717813eebbfa7a4.tar.bz2 rails-03dd47ff219098305a588e16d717813eebbfa7a4.zip |
removed unnecessary semicolons
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/test/test_case_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/test/test_case_test.rb b/activesupport/test/test_case_test.rb index 65b1cb4a14..9bc9183668 100644 --- a/activesupport/test/test_case_test.rb +++ b/activesupport/test/test_case_test.rb @@ -87,7 +87,7 @@ class AssertDifferenceTest < ActiveSupport::TestCase def test_expression_is_evaluated_in_the_appropriate_scope silence_warnings do - local_scope = "foo"; + local_scope = "foo" local_scope = local_scope # to suppress unused variable warning assert_difference("local_scope; @object.num") { @object.increment } end |