diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-11-12 08:32:54 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-11-12 08:32:54 +0000 |
| commit | 11afab19453d2dc1a56beb0a2e3fc20af75dc3c6 (patch) | |
| tree | f0681f5d371255a2ebaac9853283fc5a835096fa /lib/test/unit/ui | |
| parent | 5f489b83d91d0d6eca2fc5b5adee1f2d090e6bf6 (diff) | |
| download | ruby-11afab19453d2dc1a56beb0a2e3fc20af75dc3c6.tar.gz ruby-11afab19453d2dc1a56beb0a2e3fc20af75dc3c6.tar.xz ruby-11afab19453d2dc1a56beb0a2e3fc20af75dc3c6.zip | |
* lib/test/unit/assertions.rb (assert_throws, assert_nothing_thrown):
uncaught throw in sub thread raises ThreadError.
* lib/test/unit/ui/tk/testrunner.rb (setup_ui): "expand" is not
necessary.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4945 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/test/unit/ui')
| -rw-r--r-- | lib/test/unit/ui/tk/testrunner.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/test/unit/ui/tk/testrunner.rb b/lib/test/unit/ui/tk/testrunner.rb index adf5a1022..b37b79fd8 100644 --- a/lib/test/unit/ui/tk/testrunner.rb +++ b/lib/test/unit/ui/tk/testrunner.rb @@ -172,7 +172,7 @@ module Test f = TkFrame.new(nil, 'relief'=>'sunken', 'borderwidth'=>3, 'height'=>20).pack('fill'=>'x', 'padx'=>1) @test_progress_bar = TkFrame.new(f, 'background'=>'green').place('anchor'=>'nw', 'relwidth'=>0.0, 'relheight'=>1.0) - info_frame = TkFrame.new.pack('fill'=>'x', 'expand'=>true) + info_frame = TkFrame.new.pack('fill'=>'x') @test_count_label = create_count_label(info_frame, 'Tests:') @assertion_count_label = create_count_label(info_frame, 'Assertions:') @failure_count_label = create_count_label(info_frame, 'Failures:') |
