diff options
author | svn <svn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-11-26 20:16:16 +0000 |
---|---|---|
committer | svn <svn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-11-26 20:16:16 +0000 |
commit | 27b1553b2fc689c8c3a028ed43a237a499a4c430 (patch) | |
tree | 2b410168851f667beac30f8fd575fbfcfa9cf8ff /test/ruby | |
parent | 72e60a04372c03e40d3954063e6e520541d5ca2d (diff) | |
download | ruby-27b1553b2fc689c8c3a028ed43a237a499a4c430.tar.gz |
* remove trailing spaces.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66009 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby')
-rw-r--r-- | test/ruby/test_settracefunc.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ruby/test_settracefunc.rb b/test/ruby/test_settracefunc.rb index 39d8d1b3c6..cb4c1cabc3 100644 --- a/test/ruby/test_settracefunc.rb +++ b/test/ruby/test_settracefunc.rb @@ -2071,13 +2071,13 @@ class TestSetTraceFunc < Test::Unit::TestCase code1.call end assert_equal [1, :tp, 2, 3], events - + e = assert_raise(ArgumentError) do TracePoint.new(:line){}.enable(target_line: 10){} end assert_equal 'only target_line is specified', e.message - + e = assert_raise(ArgumentError) do TracePoint.new(:call){}.enable(target: code1, target_line: 10){} end |